Skip to content

Commit beb3207

Browse files
use default signal for killing process
1 parent ca47623 commit beb3207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/Executor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Executor {
3939
// If the process has already been killed, return true
4040
if (process.kill(0) === false) return true
4141

42-
return process.kill('SIGKILL')
42+
return process.kill()
4343
}
4444

4545
//Returns a path to the binary if it should be deleted

0 commit comments

Comments
 (0)