9 lines
134 B
Go
9 lines
134 B
Go
|
|
//go:build !windows
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
import "os/exec"
|
||
|
|
|
||
|
|
// noWindow is a no-op on non-Windows platforms.
|
||
|
|
func noWindow(cmd *exec.Cmd) {}
|