From fb30fc32258dd2d92ed5b85601806f71c85013ec Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Fri, 11 Feb 2022 16:57:48 +0100 Subject: [PATCH] fix(migration): variable typo Signed-off-by: Rajesh Rajendran --- scripts/helmcharts/openreplay/files/dbops.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/helmcharts/openreplay/files/dbops.sh b/scripts/helmcharts/openreplay/files/dbops.sh index b69d21db4..fddde5b84 100644 --- a/scripts/helmcharts/openreplay/files/dbops.sh +++ b/scripts/helmcharts/openreplay/files/dbops.sh @@ -17,7 +17,7 @@ function migration() { exit 100 fi - if [[ $FORCE_MIGRRATION == "true" ]]; then + if [[ $FORCE_MIGRATION == "true" ]]; then echo "Forcing db migration from $PREVIOUS_APP_VERSION to $CHART_APP_VERSION" elif [[ $PREVIOUS_APP_VERSION == $CHART_APP_VERSION ]]; then echo "No application version change. Not upgrading." @@ -73,7 +73,7 @@ function init(){ esac } -if [[ $FORCE_MIGRRATION == "true" ]]; then +if [[ $FORCE_MIGRATION == "true" ]]; then is_migrate=true fi