Skip to content

Commit b0e5250

Browse files
committed
Fix incorrect if condition.
1 parent a85de32 commit b0e5250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

func/upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ upgrade_start_routine() {
160160
fi
161161

162162
# Upgrade to Version 1.2.0
163-
if [ $VERSION = "1.1.1" || $VERSION = "1.1.2" ]; then
163+
if [ $VERSION = "1.1.1" ] || [ $VERSION = "1.1.2" ]; then
164164
source $HESTIA/install/upgrade/versions/latest.sh
165165
VERSION="$new_version"
166166
upgrade_refresh_config

0 commit comments

Comments
 (0)