From 379e01d855a92177d8a0dfda11a66cde7a6dad99 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Sun, 2 Jan 2022 20:39:11 +0100 Subject: [PATCH] fix: use installer without progress bar [ci skip] Doesn't look well when invoked from "bash -c '...'" when we run "abra upgrade". The progress bar shoots down the page and you miss the intro banner. --- scripts/installer/installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer/installer b/scripts/installer/installer index f5873ff8..d7daa440 100755 --- a/scripts/installer/installer +++ b/scripts/installer/installer @@ -58,7 +58,7 @@ function install_abra_release { checksum=$(echo "$checksums" | grep "$FILENAME" - | sed -En 's/([0-9a-f]{64})\s+'"$FILENAME"'.*/\1/p') echo "downloading $ABRA_VERSION $PLATFORM binary release for abra..." - wget -q --show-progress "$release_url" -O "$HOME/.local/bin/.abra-download" + wget -q "$release_url" -O "$HOME/.local/bin/.abra-download" localsum=$(sha256sum $HOME/.local/bin/.abra-download | sed -En 's/([0-9a-f]{64})\s+.*/\1/p') echo "checking if checksums match..." if [[ "$localsum" != "$checksum" ]]; then