quieted warning

This commit is contained in:
milad 2019-10-28 09:03:52 -07:00
parent 20282571ee
commit c672213a88

View file

@ -49,11 +49,11 @@ if (argv.out) {
}
// call the packager to produce the executable
packager(options, function(error, appPath) {
if (error) {
packager(options)
.then(function(appPath) {
console.log("Wrote new app to " + appPath);
})
.catch(function(error){
console.error("There was an error writing the packaged console: " + error.message);
process.exit(1);
} else {
console.log("Wrote new app to " + appPath);
}
});
});