9 lines
131 B
Go
9 lines
131 B
Go
//go:build !windows
|
|
|
|
package git
|
|
|
|
import "os/exec"
|
|
|
|
// hideWindow 非 Windows 平台无需处理
|
|
func hideWindow(cmd *exec.Cmd) {}
|