Also includes the scaffolding for finding a validating plugin candidates. Argument validation is moved to RunE to support this, so `noArgs` is removed. Signed-off-by: Ian Campbell <ijc@docker.com>
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"),
|
|
}
|