Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067 Component: engine
13 lines
272 B
Go
13 lines
272 B
Go
// +build !linux,!windows,!freebsd,!darwin
|
|
|
|
package reexec // import "github.com/docker/docker/pkg/reexec"
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// Command is unsupported on operating systems apart from Linux, Windows, and Darwin.
|
|
func Command(args ...string) *exec.Cmd {
|
|
return nil
|
|
}
|