mirror of https://github.com/stashapp/stash.git
11 lines
198 B
Go
11 lines
198 B
Go
|
//go:build linux || darwin || !windows
|
||
|
// +build linux darwin !windows
|
||
|
|
||
|
package exec
|
||
|
|
||
|
import "os/exec"
|
||
|
|
||
|
// hideExecShell does nothing on non-Windows platforms.
|
||
|
func hideExecShell(cmd *exec.Cmd) {
|
||
|
}
|