Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
fix(circle): fix string comparison on docker push (#1870) r=vladikoff
Browse files Browse the repository at this point in the history
  • Loading branch information
jrgm authored and vladikoff committed Apr 28, 2017
1 parent 10d5b56 commit 9f660d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circle.yml
Expand Up @@ -29,7 +29,7 @@ deployment:
- "[ ! -z $DOCKERHUB_REPO ]"
- docker login -e "$DOCKER_EMAIL" -u "$DOCKER_USER" -p "$DOCKER_PASS"
- |
if [ $CIRCLE_BRANCH -eq "master" ]; then
if [ $CIRCLE_BRANCH = "master" ]; then
CIRCLE_BRANCH=latest
fi
echo ${DOCKERHUB_REPO}:${CIRCLE_BRANCH}
Expand Down

0 comments on commit 9f660d4

Please sign in to comment.