Add some log comments

This commit is contained in:
Daniel Goldberg 2020-02-09 11:04:45 +02:00
parent 0c9a333976
commit e4812d401a
1 changed files with 4 additions and 0 deletions

View File

@ -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