gpui: Send correct kill signal on Linux (#16797)
should be kill -0 (zero) instead Related to #14291 and #14310 Release Notes: - N/A
This commit is contained in:
parent
29f97e2755
commit
14f8d3a33a
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ impl<P: LinuxClient + 'static> Platform for P {
|
||||||
// cleaned up when `kill -0` returns.
|
// cleaned up when `kill -0` returns.
|
||||||
let script = format!(
|
let script = format!(
|
||||||
r#"
|
r#"
|
||||||
while kill -O {pid} 2>/dev/null; do
|
while kill -0 {pid} 2>/dev/null; do
|
||||||
sleep 0.1
|
sleep 0.1
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue