mirror of https://github.com/docker/cli.git
11 lines
161 B
Go
11 lines
161 B
Go
|
package manager
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
var defaultSystemPluginDirs = []string{
|
||
|
filepath.Join(os.Getenv("ProgramData"), "Docker", "cli-plugins"),
|
||
|
}
|