From d4a18461ca19cd1e95a21f730e9b6022cb95534e Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Fri, 19 Jul 2024 01:59:06 -0300 Subject: [PATCH] Fix utils/git In this context, we want to use ${*} rather than ${@} --- libexec/sourcezap/utils/git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/sourcezap/utils/git b/libexec/sourcezap/utils/git index 45035cb..d362328 100755 --- a/libexec/sourcezap/utils/git +++ b/libexec/sourcezap/utils/git @@ -10,4 +10,4 @@ mode=u=rwX,g=rX,o= # main doas -n \ -u _sourcezap \ - /bin/sh -c "umask ${mode}; ${git} ${@}" + /bin/sh -c "umask ${mode}; ${git} ${*}"