From 4bbcb082268fd3b2409f6f3e6e72851886b45397 Mon Sep 17 00:00:00 2001 From: Simon Let Date: Mon, 16 Dec 2019 03:47:31 +0100 Subject: [PATCH] pretty curl downloads --- scripts/rawinstall.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/rawinstall.sh b/scripts/rawinstall.sh index fef932a..185463b 100755 --- a/scripts/rawinstall.sh +++ b/scripts/rawinstall.sh @@ -67,13 +67,13 @@ echo "Downloading files ..." curl_opt="--location --remote-name --progress-bar" -echo "$dl_checksums" +echo " * $fname_checksums" # shellcheck disable=2086 -curl $curl_opt "$dl_checksums" +COLUMNS=80 curl $curl_opt "$dl_checksums" -echo "$dl_binaries" +echo " * $fname_binaries" # shellcheck disable=2086 -curl $curl_opt "$dl_binaries" +COLUMNS=80 curl $curl_opt "$dl_binaries" # TODO: check if we downloaded anything # Github serves you a "Not found" page so the curl doesn't error out