mirror of
https://github.com/YunoHost-Apps/shaarli_ynh.git
synced 2024-09-03 20:26:10 +02:00
Fix bad condition
Co-authored-by: Alex Garel <alex@garel.org>
This commit is contained in:
parent
4a3567faf5
commit
c32745baee
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ ynh_abort_if_errors
|
|||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||
#=================================================
|
||||
|
||||
if [ "$upgrade_type" == "UPGRADE_APP" || "$upgrade_type" == "UPGRADE_FORCED" ] # we should do that during a force upgrade too (as it could lead to a version upgrade for instance)
|
||||
if [ "$upgrade_type" == "UPGRADE_APP" ] || [ "$upgrade_type" == "UPGRADE_FORCED" ] # we should do that during a force upgrade too (as it could lead to a version upgrade for instance)
|
||||
then
|
||||
ynh_script_progression --message="Upgrading source files..."
|
||||
|
||||
|
|
Loading…
Reference in a new issue