Skip to content

Commit

Permalink
fix conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
jclausen committed Mar 15, 2017
1 parent c95fe74 commit a4a436c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ after_success:
# Debug our box json file
- cat box.json
# Stable Releases
- if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ $TRAVIS_BRANCH == 'master' ] && [ $ENGINE == '[email protected]' ]; then box bump version="$MODULE_VERSION+$TRAVIS_BUILD_NUMBER" --force; fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ $TRAVIS_BRANCH == 'master' ] && [ $ENGINE == '[email protected]' ]; then box bump version="$MODULE_VERSION+$TRAVIS_BUILD_NUMBER" --force; fi
# Unstable Releases
- if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ $TRAVIS_BRANCH != 'master' ] && [ $ENGINE == '[email protected]' ]; then box bump version="$MODULE_VERSION" --minor --force; fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ $TRAVIS_BRANCH != 'master' ] && [ $ENGINE == '[email protected]' ]; then box bump version="$MODULE_VERSION" --minor --force; fi

0 comments on commit a4a436c

Please sign in to comment.