Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
feab29e592
commit
96df776b4e
1 changed files with 2 additions and 2 deletions
4
run.ts
4
run.ts
|
@ -64,12 +64,12 @@ const prog = Deno.run({
|
|||
stderr: "piped",
|
||||
});
|
||||
|
||||
// TODO: make this dynamic?
|
||||
const status = await prog.status()
|
||||
|
||||
copy(prog.stdout, Deno.stdout);
|
||||
copy(prog.stderr, Deno.stderr);
|
||||
|
||||
const status = await prog.status()
|
||||
|
||||
prog.close();
|
||||
|
||||
if (!status.success) {
|
||||
|
|
Loading…
Reference in a new issue