summaryrefslogtreecommitdiff
path: root/u/process/run.ts
diff options
context:
space:
mode:
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,