4e30080c64
Signed-off-by: Alexey Guskov <lexag@mail.ru>
12 lines
207 B
Go
12 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
|
|
}
|