From fc00519885724e79ddb21444e3d864209bd71f70 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Sun, 17 Nov 2024 11:19:34 +0200 Subject: [PATCH] Do not show extract progress on Windows when unzip is used (#20) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c31833b..c1a6d25 100644 --- a/install.sh +++ b/install.sh @@ -167,7 +167,7 @@ for ARCHIVE in "${ARCHIVES[@]}"; do if [[ "${OS}" == "windows" ]]; then if unzip -v &> /dev/null; then - unzip -o "${TEMP_DIR}/${FILE_NAME}" -d "${TEMP_DIR}" + unzip -q -o "${TEMP_DIR}/${FILE_NAME}" -d "${TEMP_DIR}" [[ $? -ne 0 ]] && show_fail "${message}" else C:/Windows/system32/tar.exe -xzf "${TEMP_DIR}/${FILE_NAME}" -C "${TEMP_DIR}"