From 851b1cf01303f64b5a6e89c2467ad4cabcc7c834 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 15 Sep 2015 09:34:54 -0700 Subject: [PATCH] build(gulp): properly exit tasks that don't use broccoli pipeline when ctrl+c is hit Closes #4194 --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 57dcac7797..3c93dfe331 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1329,6 +1329,7 @@ process.on('SIGINT', function() { process.exit(); }); } + process.exit(); });