From 03adceec67c7b9f3d27655d7893455d9d85cb0b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Fri, 15 Mar 2024 23:23:20 +0100 Subject: [PATCH] Title: Update unzip command in zrep script - Changed unzip command to use quiet mode - Ensured overwrite of existing files during extraction - Improved error handling for unzip operation --- zrep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zrep b/zrep index 31c0257..b4e7447 100755 --- a/zrep +++ b/zrep @@ -614,7 +614,7 @@ function zrep_install_package() { local zipFile="${tmpDir}/${author}-${script}-${version}.zip" zrep_download_package "${zipFile}" "${dlurl}" - unzip -aa -o "${zipFile}" -d "${config[main_zrep_install_dir]}" + unzip -q -aa -o "${zipFile}" -d "${config[main_zrep_install_dir]}" if [[ $? -ne 0 ]]; then zrep_msg debug "\nError: Failed to unzip the package."