1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00

[fix] Bad -v with ynh_app_setting_set

This commit is contained in:
ljf 2017-02-07 00:28:03 +01:00
parent 24bad1cb2d
commit 507f503c03

View file

@ -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
}