From 7f9503e715fcbdb0d15075ed445c8c0a87bc3a4d Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Mon, 15 Apr 2024 13:12:20 -0300 Subject: [PATCH] Fix SC2068 (shellcheck) --- libexec/portzap/portzap-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/portzap/portzap-install b/libexec/portzap/portzap-install index 1a0ea4c..b407560 100755 --- a/libexec/portzap/portzap-install +++ b/libexec/portzap/portzap-install @@ -49,7 +49,7 @@ perform_install() run_install() { - install -o root -g _portzap -m "${mode}" -v ${@} + install -o root -g _portzap -m "${mode}" -v "$@" } ##