Signed-off-by: Alexey Guskov <lexag@mail.ru> Upstream-commit: 26c03d561ab126287bb3034cc23477d18869a888 Component: engine
13 lines
207 B
Go
13 lines
207 B
Go
// +build !linux,!windows,!freebsd
|
|
|
|
package reexec
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// Command is unsupported on operating systems apart from Linux and Windows.
|
|
func Command(args ...string) *exec.Cmd {
|
|
return nil
|
|
}
|