fix(build): unused variable in Windows process check

This commit is contained in:
Deivid Soto 2026-03-30 13:11:55 +02:00
parent 5a7449b9e6
commit 16039a88a8

View file

@ -11,7 +11,7 @@ import (
// On Windows, os.FindProcess + a zero-timeout wait is used since
// signal 0 is not supported.
func IsProcessAlive(pid int) bool {
p, err := os.FindProcess(pid)
_, err := os.FindProcess(pid)
if err != nil {
return false
}