mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
quieted warning
This commit is contained in:
parent
20282571ee
commit
c672213a88
1 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue