summaryrefslogtreecommitdiffstats
path: root/pkg/secureexec/secureexec_default.go
blob: f6b843d4556684b0c8abde6754c48de9b5f49e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build !windows
// +build !windows

package secureexec

import (
	"os/exec"
)

func Command(name string, args ...string) *exec.Cmd {
	return exec.Command(name, args...)
}