From a017ef1b30b901770d59f2d553f87d1d9e4e01c1 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 15 Apr 2023 04:24:03 +0200 Subject: [PATCH] Disable scrolling --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index cca2e77..faf3b12 100644 --- a/install.sh +++ b/install.sh @@ -55,9 +55,9 @@ rm -f "$PAT" # Check if running with interactive TTY or redirected to docker log if [ -t 1 ]; then - wget "$URL" -O $PAT -q --no-check-certificate --show-progress + wget "$URL" -O "$PAT" -q --no-check-certificate --show-progress --progress=bar:noscroll else - wget "$URL" -O $PAT -q --no-check-certificate --show-progress --progress=dot:giga + wget "$URL" -O "$PAT" -q --no-check-certificate --show-progress --progress=dot:giga fi [ ! -f "$PAT" ] && echo "Download failed" && exit 61