From 15dd3241022bcb01064e9f32ece4225d2b69f858 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Mon, 15 Dec 2025 15:28:01 -0500 Subject: [PATCH] fix: $* instead of $@, seems to fix #49? Closes #49 --- abra.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abra.sh b/abra.sh index 0b6a275..56b78ce 100644 --- a/abra.sh +++ b/abra.sh @@ -6,7 +6,7 @@ export HTACCESS_CONF_VERSION=v3 export USERS_CONF_VERSION=v1 wp() { - su -p www-data -s /bin/bash -c "/usr/local/bin/wp $@" + su -p www-data -s /bin/bash -c "/usr/local/bin/wp $*" } update() { -- 2.49.0