0340c8548a
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
12 lines
198 B
Go
12 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
|
|
}
|