1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jellyfin_ynh.git synced 2024-09-03 19:26:29 +02:00

Fix conf directory in restore

it is actually in ../settings/conf
This commit is contained in:
tituspijean 2021-03-28 01:22:45 +01:00
parent d1adcf3b1c
commit 7d73309783

View file

@ -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)"