command_unsupported.go 241 B

123456789101112
  1. // +build !linux,!windows,!freebsd,!solaris,!darwin
  2. package reexec
  3. import (
  4. "os/exec"
  5. )
  6. // Command is unsupported on operating systems apart from Linux, Windows, Solaris and Darwin.
  7. func Command(args ...string) *exec.Cmd {
  8. return nil
  9. }