From 7da1c425f4b3a1cc998139f328f950e04fc27a1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Fri, 15 Mar 2024 23:21:29 +0100 Subject: [PATCH] Title: Fix unzip command order in zrep script Changes: - Reordered unzip command options in zrep script for correct execution. --- zrep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zrep b/zrep index 5febc07..31c0257 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 "${zipFile}" -o -d "${config[main_zrep_install_dir]}" + unzip -aa -o "${zipFile}" -d "${config[main_zrep_install_dir]}" if [[ $? -ne 0 ]]; then zrep_msg debug "\nError: Failed to unzip the package."