From 7d733097838b812f9e308c73896440fd1bc7502c Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sun, 28 Mar 2021 01:22:45 +0100 Subject: [PATCH] Fix conf directory in restore it is actually in ../settings/conf --- scripts/restore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/restore b/scripts/restore index 8940d13..d461558 100644 --- a/scripts/restore +++ b/scripts/restore @@ -90,9 +90,9 @@ chown -R $app: $final_path ynh_script_progression --message="Reinstalling dependencies..." --weight=7 # Prepare the source files (replace the placeholders with version, architecture, etc. -ynh_add_config --template="../conf/ffmpeg.src.default" --destination="../conf/ffmpeg.src" -ynh_add_config --template="../conf/server.src.default" --destination="../conf/server.src" -ynh_add_config --template="../conf/web.src.default" --destination="../conf/web.src" +ynh_add_config --template="../conf/ffmpeg.src.default" --destination="../settings/conf/ffmpeg.src" +ynh_add_config --template="../conf/server.src.default" --destination="../settings/conf/server.src" +ynh_add_config --template="../conf/web.src.default" --destination="../settings/conf/web.src" # Create the temporary directory tempdir="$(mktemp -d)"