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