Adapt the CLI to the host install model for 18.09.
Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
(cherry picked from commit 342afe44fb)
Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
10 lines
84 B
Go
10 lines
84 B
Go
// +build windows
|
|
|
|
package engine
|
|
|
|
var (
|
|
isRoot = func() bool {
|
|
return true
|
|
}
|
|
)
|