Files
docker-cli/cli/command/engine/activate_windows.go
Daniel Hiltgen 342afe44fb Refined engine implementations
Adapt the CLI to the host install model for 18.09.

Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
2018-09-19 20:10:31 -07:00

10 lines
84 B
Go

// +build windows
package engine
var (
isRoot = func() bool {
return true
}
)