mirror of https://github.com/docker/cli.git
14 lines
137 B
Go
14 lines
137 B
Go
|
// +build !windows
|
||
|
|
||
|
package engine
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
isRoot = func() bool {
|
||
|
return unix.Geteuid() == 0
|
||
|
}
|
||
|
)
|