Files
gosentry/src/core/runner_other.go
T
2026-06-15 07:35:52 +03:00

12 lines
283 B
Go

//go:build !windows
package core
import "os/exec"
func configureHiddenWindow(command *exec.Cmd) {
// Non-Windows platforms do not create a new console window for sh -c from a
// desktop process in the same way Windows does, so no extra process attribute
// is required here.
}