Skip to content

Commit

Permalink
❓ What has happened?
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmoMyzrailGorynych committed Jan 24, 2019
1 parent d252969 commit a07e45b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
}]);

Expand Down

0 comments on commit a07e45b

Please sign in to comment.