Removes errant quote

This commit is contained in:
Aaron Louie 2020-05-06 17:01:47 -04:00
parent 8ed72b5f44
commit 17e3ec248f
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ before_install:
install:
- export REPO=sartography/cr-connect-db
- export TAG=`if ["$TRAVIS_BRANCH == "master"]; then echo "latest"; else echo $TRAVIS_BRANCH ; fi`
- export TAG=`if [$TRAVIS_BRANCH == "master"]; then echo "latest"; else echo $TRAVIS_BRANCH ; fi`
- docker build --build-arg GIT_COMMIT="$REPO:$COMMIT" -f Dockerfile -t $REPO:$COMMIT .
- docker tag $REPO:$COMMIT $REPO:$TAG
- docker tag $REPO:$COMMIT $REPO:travis-$TRAVIS_BUILD_NUMBER