2f3002a00b
Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)
11 lines
112 B
Go
11 lines
112 B
Go
// +build !linux
|
|
|
|
package reexec
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func Command(args ...string) *exec.Cmd {
|
|
return nil
|
|
}
|