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); }); }]);