This commit is contained in:
Kroese 2023-04-12 01:00:22 +02:00 committed by GitHub
parent 2df70e3c71
commit 6a68767fbd

View file

@ -14,9 +14,9 @@ rm -rf $TMP && mkdir -p $TMP
# Check if running with interactive TTY or redirected to docker log
if [ -t 1 ]; then
wget "$URL" -O "$FILE" -q --no-check-certificate --show-progress
wget "$BOOT" -O "$FILE" -q --no-check-certificate --show-progress
else
wget "$URL" -O "$FILE" -q --no-check-certificate --show-progress --progress=dot:giga
wget "$BOOT" -O "$FILE" -q --no-check-certificate --show-progress --progress=dot:giga
fi
[ ! -f "$FILE" ] && echo "Download failed" && exit 61