From cf1ce067044546b0a5eefeb921e4fca43e1baeaf Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Tue, 2 Mar 2021 18:32:21 +0200 Subject: [PATCH] Fix `occ` command --- abra.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/abra.sh b/abra.sh index 999163f..51825b7 100644 --- a/abra.sh +++ b/abra.sh @@ -1,3 +1,5 @@ sub_occ(){ - sub_run -u www-data app php /var/www/html/occ "$@" + abra__service_="app" + abra___user="www-data" + sub_app_run php /var/www/html/occ "$@" }