diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/build.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/build.js b/bin/build.js index 965a211..4f8b74e 100644 --- a/bin/build.js +++ b/bin/build.js @@ -51,6 +51,11 @@ var makeBuildFunc = function(converter) { // Exit process with failure code process.exit(-1); + }) + .then(function() { + // Prevent badly behaving plugins + // from making the process hang + process.exit(0); }); }; }; |