chore: suppress windows-footgun false positive on gated killpg

This commit is contained in:
Teknium 2026-08-04 17:23:06 -07:00
parent 42e92c9c09
commit aec331899e
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ def _kill_git_process_tree(proc: "subprocess.Popen") -> None:
pgid = os.getpgid(proc.pid)
if pgid == proc.pid:
os.killpg(pgid, _signal.SIGKILL)
os.killpg(pgid, _signal.SIGKILL) # windows-footgun: ok — inside `if not IS_WINDOWS` gate
except Exception:
pass
try: