Skip to content

Commit

Permalink
chore: remove @ts-nocheck
Browse files Browse the repository at this point in the history
  • Loading branch information
alanrsoares committed Apr 2, 2022
1 parent f109014 commit 8ac9339
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/stack.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
// @ts-nocheck

import { spawn, ChildProcess, exec } from "child_process";
import { resolve } from "path";

Expand Down Expand Up @@ -80,7 +80,9 @@ export async function killStack() {

let cmd;
while ((cmd = cmdStack.shift())) {
await treeKillProm(cmd.pid);
if (cmd.pid) {
await treeKillProm(cmd.pid);
}
}
if (isRunning) process.stderr.write("Stopped.\n");
}
Expand Down

0 comments on commit 8ac9339

Please sign in to comment.