From 1af8f9969bc76e079589e8bf14ef4c856d7b15b3 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Wed, 20 Apr 2022 23:40:24 +0200 Subject: [PATCH] Fix argument --- helpers/apps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/apps b/helpers/apps index 0ab557542..0faad863c 100644 --- a/helpers/apps +++ b/helpers/apps @@ -32,7 +32,7 @@ ynh_install_apps() { then # Retrieve the arguments of the app (part after ?) local one_argument=$(cut -d "?" -f2- <<< "$one_app_and_its_args") - [ ! -z "$one_argument" ] && one_argument="--args \"$one_argument\"" + [ ! -z "$one_argument" ] && one_argument="--args $one_argument" # Install the app with its arguments yunohost app install $one_app $one_argument