summaryrefslogtreecommitdiff
path: root/index.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-07-12 16:10:58 -0700
committerElizabeth Hunt <me@liz.coffee>2025-07-13 12:56:22 -0700
commitf7797922027daed86d14c1128e2fa64202fb16dd (patch)
treeff9d0c17b6f404c5ee0e498e595f4c3818571c7d /index.ts
parent8e588a19944e89ded711a1e150b5cd6e7d341994 (diff)
downloadci-f7797922027daed86d14c1128e2fa64202fb16dd.tar.gz
ci-f7797922027daed86d14c1128e2fa64202fb16dd.zip
Fix pipeline generator path, docker run in child container
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);
}),
);