1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/svgedit_ynh.git synced 2024-09-03 20:26:24 +02:00
svgedit_ynh/scripts/upgrade

60 lines
1.9 KiB
Text
Raw Normal View History

2017-03-17 12:10:31 +01:00
#!/bin/bash
2020-10-08 21:05:06 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-03-19 03:56:00 +01:00
source _common.sh
2020-10-08 21:05:06 +02:00
source /usr/share/yunohost/helpers
upgrade_type=$(ynh_check_app_version_changed)
2022-07-03 04:33:56 +02:00
#=================================================
# STANDARD UPGRADE STEPS
2020-10-08 21:05:06 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-05-14 22:16:32 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-07-03 04:33:56 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-05-14 22:16:32 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2024-01-05 15:00:44 +01:00
ynh_setup_source --dest_dir="$install_dir/source"
2021-05-14 22:16:32 +02:00
fi
2017-03-17 12:10:31 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2020-10-08 21:05:06 +02:00
#=================================================
2024-01-05 15:00:44 +01:00
# BUILD WITH NPM
2020-10-08 21:05:06 +02:00
#=================================================
2024-01-05 15:00:44 +01:00
ynh_script_progression --message="Building $app..." --weight=1
pushd "$install_dir/source"
ynh_use_nodejs
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" npm i
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" npm run build
popd
2024-01-05 15:46:07 +01:00
ynh_secure_remove --file="$install_dir/source/node_modules"
ynh_secure_remove --file="$install_dir/.cache"
ynh_secure_remove --file="$install_dir/.npm"
2017-03-17 12:10:31 +01:00
2024-01-05 15:00:44 +01:00
mv "$install_dir/source/dist/editor" "$install_dir/www"
2020-10-08 21:05:06 +02:00
2024-01-05 15:00:44 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2017-03-17 12:10:31 +01:00
2020-10-08 21:05:06 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2017-03-17 12:10:31 +01:00
2022-07-03 04:33:56 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last