mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[enh] Use named args in helpers calls
Co-authored-by: Kayou <pierre@kayou.io>
This commit is contained in:
parent
a205015f0d
commit
b487fbbe00
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ _ynh_app_config_apply() {
|
||||||
# Save value in app settings
|
# Save value in app settings
|
||||||
elif [[ "$bind" == "settings" ]]
|
elif [[ "$bind" == "settings" ]]
|
||||||
then
|
then
|
||||||
ynh_app_setting_set $app $short_setting "${!short_setting}"
|
ynh_app_setting_set --app=$app --key=$short_setting --value="${!short_setting}"
|
||||||
ynh_print_info "Configuration key '$short_setting' edited in app settings"
|
ynh_print_info "Configuration key '$short_setting' edited in app settings"
|
||||||
|
|
||||||
# Save multiline text in a file
|
# Save multiline text in a file
|
||||||
|
|
Loading…
Add table
Reference in a new issue