e19f49915f
Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack) Conflicts: builder/internals.go daemon/graphdriver/aufs/aufs.go daemon/volumes.go fixed conflicts in imports
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
|
|
}
|