diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-26 16:27:24 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-26 16:51:38 -0700 |
commit | df1a7eec824d9e9d99c58b1f7792c8f384955273 (patch) | |
tree | 777293cac122ec41fc00e7df93ae30dfe85ebc13 /u | |
parent | f0898a3c19fafc5784385371beac6304b36f8f79 (diff) | |
download | ci-df1a7eec824d9e9d99c58b1f7792c8f384955273.tar.gz ci-df1a7eec824d9e9d99c58b1f7792c8f384955273.zip |
Adds better secret log liens
Diffstat (limited to 'u')
-rw-r--r-- | u/process/exec.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/u/process/exec.ts b/u/process/exec.ts index 7721f61..46b31c4 100644 --- a/u/process/exec.ts +++ b/u/process/exec.ts @@ -51,7 +51,7 @@ export const getStdout = ( if (code === 0) { res(streams); } else { - rej(new Error(`exited with non-zero code: ${code}`)); + rej(new Error(`exited with non-zero code: ${code}. ${stderr}`)); } }); }), |