diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-07 11:34:14 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-07 11:34:14 -0500 | 
| commit | 7fa478295496d16bfc99dd80858544900c7b0a4c (patch) | |
| tree | eaf94141835cdc7d27e58c6a0d1977c9361b1525 /dev | |
| parent | 0b003ef2c3c9029a2d92dfc23d760de895e0d7a4 (diff) | |
Return an error code when promise main() functions fail (#1002)
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/util.js | 13 | 
1 files changed, 12 insertions, 1 deletions
| diff --git a/dev/util.js b/dev/util.js index 971837af..c17cd29a 100644 --- a/dev/util.js +++ b/dev/util.js @@ -137,6 +137,16 @@ function createDictionaryArchive(dictionaryDirectory, dictionaryName) {  } +async function testMain(func) { +    try { +        await func(); +    } catch (e) { +        console.log(e); +        process.exit(-1); +    } +} + +  module.exports = {      get JSZip() { return getJSZip(); },      getArgs, @@ -144,5 +154,6 @@ module.exports = {      getDefaultManifest,      getDefaultManifestAndVariants,      createManifestString, -    createDictionaryArchive +    createDictionaryArchive, +    testMain  }; |