Commit 6a68767f authored by Kroese's avatar Kroese Committed by GitHub
Browse files

Boot url

parent 2df70e3c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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