diff options
author | Fraboni, Gino (gf403a) <gino.fraboni@amdocs.com> | 2017-05-10 14:05:44 -0400 |
---|---|---|
committer | Fraboni, Gino (gf403a) <gino.fraboni@amdocs.com> | 2017-05-10 14:09:37 -0400 |
commit | 6ad5787ed8311c0e3aee7659cab4f0e15fb9da3f (patch) | |
tree | e74cc740526c978379b03af885a64332094c8704 | |
parent | 46366e33020e152dba0d5a2b8d3bc9542d44f72a (diff) |
Fix syntax error in docker push script.
Change-Id: I8182f3c38276b526afe56d67b41f59562e0c9e35
Signed-off-by: Fraboni, Gino (gf403a) <gino.fraboni@amdocs.com>
-rw-r--r-- | jjb/include-docker-push.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |