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