Skip to content

Commit 402d574

Browse files
committed
chore - clean comments
1 parent 90cb63a commit 402d574

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

package/src/util/cmd.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ export async function runCmd(
2828
stdout: "piped",
2929
stderr: "piped",
3030
});
31-
// const p = Deno.run({
32-
// cmd,
33-
// stdout: "piped",
34-
// stderr: "piped",
35-
// });
3631
const output = await cmd.output();
3732
const stdout = new TextDecoder().decode(output.stdout);
3833
const stderr = new TextDecoder().decode(output.stderr);
@@ -46,9 +41,6 @@ export async function runCmd(
4641
throw Error(`Command ${[runCmd, ...args]} failed.`);
4742
}
4843

49-
// Close the child process
50-
// p.close();
51-
5244
return {
5345
status: output,
5446
stdout,

0 commit comments

Comments
 (0)