Skip to content

Commit

Permalink
Merge pull request #22 from mapuri/travis
Browse files Browse the repository at this point in the history
fix travis script to trigger release only for pushes to master branch
  • Loading branch information
mapuri committed Dec 2, 2015
2 parents 651a08b + 94d5187 commit 1d30c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ script:
- >
make build &&
make unit-test &&
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
if [ "${TRAVIS_PULL_REQUEST}" = "false" -a "${TRAVIS_BRANCH}" = "master" ]; then
make release;
fi

0 comments on commit 1d30c5b

Please sign in to comment.