2016-03-25 16:38:00 -07:00
|
|
|
// +build !linux,!windows,!freebsd,!solaris
|
2014-10-29 21:06:51 +02:00
|
|
|
|
|
|
|
package reexec
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
2015-07-20 10:16:37 -07:00
|
|
|
// Command is unsupported on operating systems apart from Linux and Windows.
|
2014-10-29 21:06:51 +02:00
|
|
|
func Command(args ...string) *exec.Cmd {
|
|
|
|
return nil
|
|
|
|
}
|