Merge branch 'master' of https://github.com/miketimofeev/virtual-environments into v-mitim/get_rid_of_apt.sh_invocation

This commit is contained in:
Mikhail Timofeev
2020-07-10 12:35:52 +03:00
31 changed files with 303 additions and 308 deletions

View File

@@ -14,9 +14,9 @@ download_with_retries() {
local COMPRESSED="$4"
if [ $COMPRESSED == "compressed" ]; then
COMMAND="curl $URL -4 -s --compressed -o '$DEST/$NAME'"
COMMAND="curl $URL -4 -sL --compressed -o '$DEST/$NAME'"
else
COMMAND="curl $URL -4 -s -o '$DEST/$NAME'"
COMMAND="curl $URL -4 -sL -o '$DEST/$NAME'"
fi
echo "Downloading $URL..."