From acc469a74e84543cbebe6ed25c4a2e2c640fb832 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Tue, 21 May 2019 20:27:18 -0400 Subject: [PATCH] Fix space issue in create-venv --- create-venv.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/create-venv.sh b/create-venv.sh index db08994d..00bcab3c 100755 --- a/create-venv.sh +++ b/create-venv.sh @@ -84,7 +84,7 @@ if [[ -z "$(which python3.6)" ]]; then python_file="${download_dir}/Python-3.6.8.tar.xz" if [[ ! -f "${python_file}" ]]; then python_url='https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tar.xz' - curl -sSfL-o "${python_file}" "${python_url}" + curl -sSfL -o "${python_file}" "${python_url}" fi tar -C "${temp_dir}" -xf "${python_file}" @@ -114,6 +114,7 @@ mkdir -p "${VENV_PATH}" # shellcheck source=/dev/null source "${VENV_PATH}/bin/activate" "${PYTHON}" -m pip install wheel +"${PYTHON}" -m pip install requests case $CPU_ARCH in armv7l|arm64v8) @@ -144,7 +145,7 @@ case $CPU_ARCH in if [[ ! -f "${snowboy_file}" ]]; then snowboy_url='https://github.com/Kitt-AI/snowboy/archive/v1.3.0.tar.gz' echo "Downloading snowboy (${snowboy_url})" - curl -sSfL-o "${snowboy_file}" "${snowboy_url}" + curl -sSfL -o "${snowboy_file}" "${snowboy_url}" fi "${PYTHON}" -m pip install "${snowboy_file}"