From c2b111dea18b90edce1a8844ea5ab9c13e22ac8e Mon Sep 17 00:00:00 2001 From: Alif Rachmawadi Date: Mon, 24 Jan 2022 04:37:15 +0000 Subject: [PATCH] quiet unzip (fixes #130) --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 03ca3f71..33a61423 100755 --- a/setup.sh +++ b/setup.sh @@ -53,7 +53,7 @@ download_archive() { curl --connect-timeout 15 --retry 5 --progress-bar $archive_url >$archive_local if [[ $archive_name == *zip ]]; then - unzip -o "$archive_local" -d "$HOME" + unzip -q -o "$archive_local" -d "$HOME" shopt -s dotglob mv ${HOME}/flutter/* "$2" shopt -u dotglob