implement download_with_retries function

This commit is contained in:
Dibir Magomedsaygitov
2020-07-07 19:23:45 +03:00
parent 5f5c60ef98
commit 5faa6abe7d
2 changed files with 4 additions and 3 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..."