moby--moby/pkg/reexec/command_unsupported.go

13 lines
216 B
Go

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