π― Problem Statement
src/main.go:L39 uses syscall.SysProcAttr{Setpgid: true}, which is Unix-specific and prevents building/running on Windows systems.
π Affected Files
π οΈ Proposed Solution
Use build tags (exec_unix.go vs exec_windows.go) or platform-agnostic process context handling to enable Windows support.
π― Problem Statement
src/main.go:L39usessyscall.SysProcAttr{Setpgid: true}, which is Unix-specific and prevents building/running on Windows systems.π Affected Files
src/main.go:L39π οΈ Proposed Solution
Use build tags (
exec_unix.govsexec_windows.go) or platform-agnostic process context handling to enable Windows support.