diff options
-rw-r--r-- | build/tasks/testswarm.js | 4 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index 5c11a3aaa..2db312048 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -64,10 +64,8 @@ function submit( commit, runs, configFile, extra, done ) { }, function( error, passed ) { if ( error ) { grunt.log.error( error ); - done( false ); - return; } - done(); + done( passed ); }); } diff --git a/package.json b/package.json index c3e0a04d3..d52be41ea 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "grunt-html": "0.3.3", "grunt-git-authors": "1.2.0", "rimraf": "2.1.4", - "testswarm": "1.0.0-alpha" + "testswarm": "1.0.3" }, "keywords": [] } |