From a07e45bba47a08d2cc76f38b9c4c5f417d14cf29 Mon Sep 17 00:00:00 2001 From: Cosmo Myzrail Gorynych aka Comigo Date: Fri, 25 Jan 2019 02:32:59 +1200 Subject: [PATCH] :question: What has happened? --- gulpfile.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 82a8cc8..552b5c0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -194,9 +194,14 @@ const release = gulp.series([build, lint, done => { flavor: 'normal', buildType: 'versioned' }); - nw.build().then(done) + nw.build() + .then(() => { + console.log('Binaries done'); + done(); + }) .catch(function (error) { console.error(error); + done(error); }); }]);