blob: ad4ea38ebbe100d78d407477939155cbc6a92a95 [file] [log] [blame]
// +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
}