mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 08:22:30 +02:00
switched to arrow functions
This commit is contained in:
parent
c672213a88
commit
2059168bd3
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue