github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/pkg/reexec/command_unsupported.go (about) 1 // +build !linux,!windows,!freebsd,!solaris,!darwin 2 3 package reexec 4 5 import ( 6 "os/exec" 7 ) 8 9 // Command is unsupported on operating systems apart from Linux, Windows, Solaris and Darwin. 10 func Command(args ...string) *exec.Cmd { 11 return nil 12 }