From f1b791815459dccc368a776cedb94c8e96443e9b Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Wed, 8 Feb 2023 09:11:17 +0100 Subject: [PATCH] fix --- scripts/_common.sh | 3 --- scripts/install | 2 -- scripts/restore | 2 -- scripts/upgrade | 2 -- 4 files changed, 9 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 90b04f0..944a65e 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,9 +4,6 @@ # COMMON VARIABLES #================================================= -# dependencies used by the app -#REMOVEME? pkg_dependencies="" - #================================================= # PERSONAL HELPERS #================================================= diff --git a/scripts/install b/scripts/install index 1678873..7e40cb3 100644 --- a/scripts/install +++ b/scripts/install @@ -17,8 +17,6 @@ ynh_script_progression --message="Setting up source files..." # Download, check integrity, uncompress and patch the source from app.src ynh_setup_source --dest_dir="$install_dir" --source_id=$YNH_ARCH -chmod 750 "$install_dir" -chmod -R o-rwx "$install_dir" chown -R $app:$app "$install_dir" #================================================= diff --git a/scripts/restore b/scripts/restore index 5792328..1c02b1e 100644 --- a/scripts/restore +++ b/scripts/restore @@ -24,8 +24,6 @@ ynh_script_progression --message="Restoring the app main directory..." ynh_restore_file --origin_path="$install_dir" -chmod 750 "$install_dir" -chmod -R o-rwx "$install_dir" chown -R $app:$app "$install_dir" #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 659644e..efc3d11 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -36,8 +36,6 @@ then ynh_setup_source --dest_dir="$install_dir" --source_id=$YNH_ARCH fi -chmod 750 "$install_dir" -chmod -R o-rwx "$install_dir" chown -R $app:$app "$install_dir" #=================================================