summaryrefslogtreecommitdiff
path: root/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'index.ts')
-rwxr-xr-xindex.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.ts b/index.ts
index 86119ca..714316d 100755
--- a/index.ts
+++ b/index.ts
@@ -28,7 +28,7 @@ const main = (_argv = process.argv.slice(2)): Promise<IEither<Error, void>> =>
if (process.argv[1] === import.meta.filename) {
await main().then((eitherDone) =>
eitherDone.mapLeft((err) => {
- console.error(`failed to start`, err);
+ console.error('error:', err);
process.exit(1);
}),
);