diff --git a/install.sh b/install.sh index f3ac650..8305ce0 100644 --- a/install.sh +++ b/install.sh @@ -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