I am stupid
continuous-integration/drone/push Build is passing Details

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-12-06 19:47:58 +01:00
parent feab29e592
commit 96df776b4e
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
1 changed files with 2 additions and 2 deletions

4
run.ts
View File

@ -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) {