Files
docker/pkg/reexec/command_unsupported.go
T
2015-07-20 17:00:18 -07:00

13 lines
198 B
Go

// +build !linux,!windows
package reexec
import (
"os/exec"
)
// Command is unsupported on operating systems apart from Linux and Windows.
func Command(args ...string) *exec.Cmd {
return nil
}