From 507f503c0325ff35428742396106ec082cb45f4d Mon Sep 17 00:00:00 2001 From: ljf Date: Tue, 7 Feb 2017 00:28:03 +0100 Subject: [PATCH] [fix] Bad -v with ynh_app_setting_set --- scripts/_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 44ca232..abd0445 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -258,10 +258,10 @@ ynh_set_default_perm () { } ynh_sso_access () { - ynh_app_setting_set $app unprotected_uris -v "/" + ynh_app_setting_set $app unprotected_uris "/" if [[ $is_public -eq 0 ]]; then - ynh_app_setting_set $app protected_uris -v "$1" + ynh_app_setting_set $app protected_uris "$1" fi sudo yunohost app ssowatconf }