diff options
author | Elizabeth <me@liz.coffee> | 2025-06-02 18:55:32 -0700 |
---|---|---|
committer | Elizabeth <me@liz.coffee> | 2025-06-02 18:55:32 -0700 |
commit | a16fbd3eaa165b3226a3b0ed9848b51718aaeafa (patch) | |
tree | c12f09a3deb8d33d166480577d9b1223462ee295 /mod.ts | |
parent | ba8e70d9082f193df47ab866a59636e63c31970e (diff) | |
download | ci-a16fbd3eaa165b3226a3b0ed9848b51718aaeafa.tar.gz ci-a16fbd3eaa165b3226a3b0ed9848b51718aaeafa.zip |
Fixes when the map of an either is expected to be possible undefined
Diffstat (limited to 'mod.ts')
-rwxr-xr-x | mod.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ if (import.meta.main) { eitherDone.fold(({ isLeft, value }) => { if (!isLeft) return; - console.error(value); + console.error(`Failed to start`, value); Deno.exit(1); }), ); |