From 2c6ec42ffd19b3bda9dab2b9a7ca7470185d3249 Mon Sep 17 00:00:00 2001 From: Peter Braden Date: Wed, 11 Feb 2015 21:24:59 +0100 Subject: [PATCH] Don't fail the build if package upload fails --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5c752dd..5101789 100755 --- a/.travis.yml +++ b/.travis.yml @@ -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