diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-12 16:10:58 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-13 12:56:22 -0700 |
commit | f7797922027daed86d14c1128e2fa64202fb16dd (patch) | |
tree | ff9d0c17b6f404c5ee0e498e595f4c3818571c7d /index.ts | |
parent | 8e588a19944e89ded711a1e150b5cd6e7d341994 (diff) | |
download | ci-f7797922027daed86d14c1128e2fa64202fb16dd.tar.gz ci-f7797922027daed86d14c1128e2fa64202fb16dd.zip |
Fix pipeline generator path, docker run in child container
Diffstat (limited to 'index.ts')
-rwxr-xr-x | index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); }), ); |