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

package secureexec

import (
	"os/exec"
)

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