From 6a68767fbd02359c9bc6912602e5c6bf2473a575 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 12 Apr 2023 01:00:22 +0200 Subject: [PATCH] Boot url --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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