Skip to content

Commit

Permalink
Don't fail the build if package upload fails
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbraden committed Feb 11, 2015
1 parent efc2f6a commit 2c6ec42
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 @@ -50,7 +50,7 @@ install:
before_script:
- echo "Publishing native platform Binary Package? ->" $PUBLISH_BINARY
# if publishing, do it
- if [[ $PUBLISH_BINARY == true ]]; then node-pre-gyp package publish; fi;
- if [[ $PUBLISH_BINARY == true ]]; then node-pre-gyp package publish || true ; fi;
# cleanup
- node-pre-gyp clean
- node-gyp clean
Expand Down

0 comments on commit 2c6ec42

Please sign in to comment.