Skip to content

Commit

Permalink
Add missing right bracket to upgrade script (#1890) (#1891)
Browse files Browse the repository at this point in the history
The commit[1] to add upgrade support from 1.4.2 omitted a right
bracket. This mistake caused upgrade to fail from 1.4.0.

1 - e811e0a

(cherry picked from commit 10aa9d4)
  • Loading branch information
zjs authored Jul 20, 2018
1 parent 247225e commit 5b41c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer/build/scripts/upgrade/upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function proceedWithUpgrade {
checkUpgradeStatus "VIC Appliance" ${appliance_upgrade_status}
local ver="$1"

if [ "$ver" == "$VER_1_2_1" ] || [ "$ver" == "$VER_1_3_0" ] || [ "$ver" == "$VER_1_3_1" ] || [ "$ver" == "$VER_1_4_0" || [ "$ver" == "$VER_1_4_1" ]; then
if [ "$ver" == "$VER_1_2_1" ] || [ "$ver" == "$VER_1_3_0" ] || [ "$ver" == "$VER_1_3_1" ] || [ "$ver" == "$VER_1_4_0" ] || [ "$ver" == "$VER_1_4_1" ]; then
log ""
log "Detected old appliance's version as $ver."

Expand Down

0 comments on commit 5b41c6e

Please sign in to comment.