From a18dba43d3d7c869d9da6c896bc34831d4f011c9 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Thu, 25 Aug 2022 14:45:23 +0200 Subject: [PATCH] No need to use Go in restore and remove scripts --- scripts/remove | 4 ---- scripts/restore | 1 - 2 files changed, 5 deletions(-) diff --git a/scripts/remove b/scripts/remove index 016801e..090c95c 100644 --- a/scripts/remove +++ b/scripts/remove @@ -7,7 +7,6 @@ #================================================= source _common.sh -source ynh_install_go source /usr/share/yunohost/helpers #================================================= @@ -61,9 +60,6 @@ ynh_script_progression --message="Removing the PostgreSQL database" --weight=2 # Remove a database if it exists, along with the associated user ynh_psql_remove_db --db_user=$db_user --db_name=$db_name -# Remove Go -ynh_remove_go - #================================================= # REMOVE APP MAIN DIR #================================================= diff --git a/scripts/restore b/scripts/restore index fdee7bc..604d010 100644 --- a/scripts/restore +++ b/scripts/restore @@ -8,7 +8,6 @@ # Keep this path for calling _common.sh inside the execution's context of backup and restore scripts source ../settings/scripts/_common.sh -source ../settings/scripts/ynh_install_go source /usr/share/yunohost/helpers #=================================================