Loading run/install.sh +4 −2 Original line number Diff line number Diff line Loading @@ -8,11 +8,13 @@ echo "Downloading ${BOOT} as boot image..." # Check if running with interactive TTY or redirected to docker log if [ -t 1 ]; then wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress --progress=bar:noscroll PROGRESS="--progress=bar:noscroll" else wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress --progress=dot:giga PROGRESS="--progress=dot:giga" fi wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress "$PROGRESS" [ ! -f "$TMP" ] && echo "Failed to download ${BOOT}" && exit 61 SIZE=$(stat -c%s "$TMP") Loading Loading
run/install.sh +4 −2 Original line number Diff line number Diff line Loading @@ -8,11 +8,13 @@ echo "Downloading ${BOOT} as boot image..." # Check if running with interactive TTY or redirected to docker log if [ -t 1 ]; then wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress --progress=bar:noscroll PROGRESS="--progress=bar:noscroll" else wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress --progress=dot:giga PROGRESS="--progress=dot:giga" fi wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress "$PROGRESS" [ ! -f "$TMP" ] && echo "Failed to download ${BOOT}" && exit 61 SIZE=$(stat -c%s "$TMP") Loading