From 77a48629b507ee91aabddb71b39fa3f47d60bd00 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sat, 23 Jul 2022 00:41:42 +0200 Subject: [PATCH] fix missing /backups --- scripts/install | 1 + scripts/upgrade | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts/install b/scripts/install index bb0e5e9..746e017 100644 --- a/scripts/install +++ b/scripts/install @@ -223,6 +223,7 @@ chown -R $app:www-data "$final_path" # Sauf certains dossiers includes, files et upload chown -R $app $final_path/{includes,files,upload} # Restreint l'accès au dossier de backup +mkdir -p $final_path/backups chmod 750 $final_path/backups #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 5e482b6..b13c826 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -190,6 +190,7 @@ if [ -d "$final_path/install" ]; then fi # Restreint l'accès au dossier de backup +mkdir -p $final_path/backups chmod 750 $final_path/backups #=================================================