From d5878a0492e1bc2b588e8e7480e4f12150ddf393 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 c0e8395f..e50928f4 100755 --- a/setup.sh +++ b/setup.sh @@ -53,7 +53,7 @@ download_archive() { curl --connect-timeout 15 --retry 5 $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