Don't fail the build if package upload fails

This commit is contained in:
Peter Braden 2015-02-11 21:24:59 +01:00
parent efc2f6a881
commit 2c6ec42ffd

View File

@ -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