Signed-off-by: Yong Tang <yong.tang.github@outlook.com> Upstream-commit: 4785f1a7ab7ec857dc3ca849ee6ecadf519ef30e Component: engine
13 lines
224 B
Go
13 lines
224 B
Go
// +build !linux,!windows,!freebsd,!darwin
|
|
|
|
package reexec
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// Command is unsupported on operating systems apart from Linux, Windows, and Darwin.
|
|
func Command(args ...string) *exec.Cmd {
|
|
return nil
|
|
}
|