From e4812d401add274a28e9890dcc37762e0d0d54f7 Mon Sep 17 00:00:00 2001 From: Daniel Goldberg Date: Sun, 9 Feb 2020 11:04:45 +0200 Subject: [PATCH] Add some log comments --- deployment_scripts/deploy_linux.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deployment_scripts/deploy_linux.sh b/deployment_scripts/deploy_linux.sh index d1c73a653..664b30926 100755 --- a/deployment_scripts/deploy_linux.sh +++ b/deployment_scripts/deploy_linux.sh @@ -115,7 +115,10 @@ if [[ ${python_cmd} == "" ]]; then python_cmd="python3.7" fi +log_message "Installing build-essentials" sudo apt install build-essentials +log_message "Installing or updating pip" + # shellcheck disable=SC2086 if exists wget; then wget --output-document=get-pip.py https://bootstrap.pypa.io/get-pip.py @@ -125,6 +128,7 @@ fi ${python_cmd} get-pip.py rm get-pip.py + log_message "Installing island requirements_island" requirements_island="$ISLAND_PATH/requirements.txt" ${python_cmd} -m pip install -r "${requirements_island}" --user --upgrade || handle_error