From: Venkata Harish K Kajur Date: Thu, 11 May 2017 06:09:38 +0000 (+0000) Subject: Update the bugfix the docker push script with elif X-Git-Tag: 1.0.0-Amsterdam~497 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F29%2F4129%2F1;p=ci-management.git Update the bugfix the docker push script with elif Change-Id: I77e6305ca7338e3e7f61fa48ea547b0609123867 Signed-off-by: Venkata Harish K Kajur --- diff --git a/jjb/include-docker-push.sh b/jjb/include-docker-push.sh index 015ac7453..b056afb19 100644 --- a/jjb/include-docker-push.sh +++ b/jjb/include-docker-push.sh @@ -29,7 +29,7 @@ if [[ $PROJECT =~ $SEARCH ]] ; then if [ "$VERSION" == "1.0.0" ]; then docker tag $REPO_PATH:latest $REPO_PATH:1.0-STAGING-latest; docker push $REPO_PATH:1.0-STAGING-latest; - else if [ "$VERSION" == "1.1.0" ]; then + elif [ "$VERSION" == "1.1.0" ]; then docker tag $REPO_PATH:latest $REPO_PATH:1.1-STAGING-latest; docker push $REPO_PATH:1.0-STAGING-latest; else