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