Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
engelgabriel committed Dec 8, 2015
1 parent 8235b2b commit 8270323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CURL_URL="https://registry.hub.docker.com/u/rocketchat/rocket.chat/trigger/$PUSH
if ["$TRAVIS_TAG" ]; then
CURL_DATA='{"source_type":"Tag","source_name":"'"$TRAVIS_TAG"'","docker_tag":"'"$TRAVIS_TAG"'"}';
else
if ["$TRAVIS_BRANCH" ="master" ]; then
if [ "$TRAVIS_BRANCH" == "master" ]; then
CURL_DATA='{"source_type":"Branch","source_name":"master","docker_tag":"latest"}';
else
CURL_DATA='{"source_type":"Branch","source_name":"'"$TRAVIS_BRANCH"'","docker_tag":"'"$TRAVIS_BRANCH"'"}';
Expand Down

0 comments on commit 8270323

Please sign in to comment.