Skip to content

Commit 894b5b6

Browse files
committed
feat: added -9 code to kill command when killing the process from the popup view (#2900)
1 parent eb5fb35 commit 894b5b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Kit/process.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public class ProcessView: NSStackView {
265265

266266
@objc private func kill() {
267267
if let pid = self.pid {
268-
asyncShell("kill \(pid)")
268+
_ = syncShell("kill -9 \(pid)")
269269
}
270270
}
271271
}

0 commit comments

Comments
 (0)