1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tiki_ynh.git synced 2024-09-04 01:15:54 +02:00

Merge pull request #17 from tiki-jyhem/2023-06-16_fix_upgrades

2023 06 16 fix upgrades
This commit is contained in:
Éric Gaspar 2023-06-23 23:19:49 +02:00 committed by GitHub
commit e31a065b96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,6 +38,12 @@ if [ -z "${fpm_usage:-}" ]; then
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
fi
# If release_cycle doesn't exist, create it
if [ -z "${release_cycle:-}" ]; then
release_cycle=longterm
ynh_app_setting_set --app=$app --key=release_cycle --value=$release_cycle
fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================