summaryrefslogtreecommitdiff
path: root/mod.ts
diff options
context:
space:
mode:
authorElizabeth <me@liz.coffee>2025-06-02 18:55:32 -0700
committerElizabeth <me@liz.coffee>2025-06-02 18:55:32 -0700
commita16fbd3eaa165b3226a3b0ed9848b51718aaeafa (patch)
treec12f09a3deb8d33d166480577d9b1223462ee295 /mod.ts
parentba8e70d9082f193df47ab866a59636e63c31970e (diff)
downloadci-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-xmod.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod.ts b/mod.ts
index 0af8943..98470fc 100755
--- a/mod.ts
+++ b/mod.ts
@@ -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);
}),
);