github.com/endocode/docker@v1.4.2-0.20160113120958-46eb4700391e/pkg/reexec/command_unsupported.go (about)

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