mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1cb17f03d0
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
|
|
}
|