switched to arrow functions

This commit is contained in:
milad 2019-10-28 09:05:38 -07:00
parent c672213a88
commit 2059168bd3

View file

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