From fd62ca3b373383c8b7ea8bc536e8171b75139318 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 24 Jun 2019 18:49:09 +0200 Subject: [PATCH] Readonly variables was causing issues --- scripts/remove | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/remove b/scripts/remove index 8579c79..80f7283 100644 --- a/scripts/remove +++ b/scripts/remove @@ -12,9 +12,9 @@ source /usr/share/yunohost/helpers # LOAD SETTINGS #================================================= -readonly app=$YNH_APP_INSTANCE_NAME -readonly domain=$(ynh_app_setting_get "$app" domain) -readonly final_path=$(ynh_app_setting_get "$app" final_path) +app=$YNH_APP_INSTANCE_NAME +domain=$(ynh_app_setting_get "$app" domain) +final_path=$(ynh_app_setting_get "$app" final_path) #================================================= # REMOVE THE MAIN DIR OF THE APP