Skip to content

Commit

Permalink
fix: use correct syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Jul 28, 2018
1 parent 61040bd commit 5737ea6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- run: make build
- run:
command: |
if [ "${CIRCLE_BRANCH}" == "release" ]; then
make release
fi
if [[ "$CIRCLE_BRANCH" == "release" ]]; then
make release
fi

0 comments on commit 5737ea6

Please sign in to comment.