1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/restic_ynh.git synced 2024-09-03 20:16:22 +02:00

fix: save vars containing spaces

This commit is contained in:
Lionel Coupouchetty-Ramouchetty 2020-03-02 22:08:58 +01:00
parent 4ca24f9ae1
commit 984e2d0102

View file

@ -67,7 +67,7 @@ ynh_save_args () {
if [ "$var" == "path_url" ]; then
setting_var="path"
fi
ynh_app_setting_set $app $setting_var ${!var}
ynh_app_setting_set $app $setting_var "${!var}"
done
}