summaryrefslogtreecommitdiff
path: root/u/process/run.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-06-14 12:27:04 -0700
committerElizabeth Hunt <me@liz.coffee>2025-06-14 12:27:04 -0700
commit55519c21af02b344fa9753111e3bf6f4975b0479 (patch)
treef5ecca6f6d46887d6682b11acb81a24d49fa9de1 /u/process/run.ts
parent0662f62db82026e44cfff7ec42776eb6c2c06cfa (diff)
downloadci-55519c21af02b344fa9753111e3bf6f4975b0479.tar.gz
ci-55519c21af02b344fa9753111e3bf6f4975b0479.zip
Fix some logging stuff
Diffstat (limited to 'u/process/run.ts')
-rw-r--r--u/process/run.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/u/process/run.ts b/u/process/run.ts
index b09e64e..abe143c 100644
--- a/u/process/run.ts
+++ b/u/process/run.ts
@@ -22,7 +22,7 @@ export const getStdout = (
.bimap(TraceUtil.withFunctionTrace(getStdout))
.map((tCmd) => {
const cmd = tCmd.get();
- tCmd.trace.trace(`:> im gonna run this command! ${cmd}`);
+ tCmd.trace.trace(`Command = ${cmd} :> im gonna run this command! `);
const [exec, ...args] = typeof cmd === "string" ? cmd.split(" ") : cmd;
return new Deno.Command(exec, {
args,