Use variable instead of hard coded value (#7213)

This commit is contained in:
Dusko Dobranic
2023-03-02 22:28:36 +01:00
committed by GitHub
parent 477577696f
commit 583096e059

View File

@@ -33,7 +33,7 @@ download_with_retries() {
return 0
else
echo "Error — Either HTTP response code for '$URL' is wrong - '$http_code' or exit code is not 0 - '$exit_code'. Waiting $interval seconds before the next attempt, $retries attempts left"
sleep 30
sleep $interval
fi
# Enable exit on error back
set -e