blob: 9aed004e864bf48e5c58672d5e62b781ef41fe43 [file] [log] [blame]
// +build !linux,!windows,!freebsd,!solaris
package reexec
import (
"os/exec"
)
// Command is unsupported on operating systems apart from Linux and Windows.
func Command(args ...string) *exec.Cmd {
return nil
}