Skip to content

Commit defd9ee

Browse files
committed
chore: linting
1 parent 5e6fae8 commit defd9ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ export class ProcessPromise extends Promise<ProcessOutput> {
412412
throw new Error('Trying to kill a process without creating one.')
413413
if (!this.child.pid) throw new Error('The process pid is undefined.')
414414

415-
let children = await ps.tree({pid: this.child.pid, recursive: true})
415+
let children = await ps.tree({ pid: this.child.pid, recursive: true })
416416
for (const p of children) {
417417
try {
418418
process.kill(+p.pid, signal)

0 commit comments

Comments
 (0)