1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/vaultwarden_ynh.git synced 2024-09-03 18:26:31 +02:00

Protecting source_id

This commit is contained in:
yalh76 2020-04-07 02:15:19 +02:00
parent 9d4624c166
commit fa60c6bc66
2 changed files with 4 additions and 4 deletions

View file

@ -88,10 +88,10 @@ ynh_print_info --message="Setting up source files..."
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress the source of bitwarden_rs from app.src to his build directory
ynh_setup_source --dest_dir="$final_path/build/" --source_id=app
ynh_setup_source --dest_dir="$final_path/build/" --source_id="app"
# Download, check integrity, uncompress and patch the source from web.src
ynh_setup_source --dest_dir="$final_path/live/web-vault/" --source_id=web
ynh_setup_source --dest_dir="$final_path/live/web-vault/" --source_id="web"
#=================================================
# NGINX CONFIGURATION

View file

@ -86,10 +86,10 @@ then
ynh_print_info --message="Upgrading source files..."
# Download, check integrity, uncompress the source of bitwarden_rs from app.src to his build directory
ynh_setup_source --dest_dir="$final_path/build/" --source_id=app
ynh_setup_source --dest_dir="$final_path/build/" --source_id="app"
# Download, check integrity, uncompress and patch the source from web.src
ynh_setup_source --dest_dir="$final_path/live/web-vault/" --source_id=web
ynh_setup_source --dest_dir="$final_path/live/web-vault/" --source_id="web"
fi
#=================================================