diff options
Diffstat (limited to 'src/upd8.js')
-rwxr-xr-x | src/upd8.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/upd8.js b/src/upd8.js index 15247878..7cb42027 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -1428,6 +1428,9 @@ if (true || isMain(import.meta.url) || path.basename(process.argv[1]) === 'hsmus } catch (error) { if (error instanceof AggregateError) { showAggregate(error); + } else if (error.cause) { + console.error(error); + showAggregate(error); } else { console.error(error); } |