mirror of https://github.com/docker/cli.git
22 lines
509 B
Go
22 lines
509 B
Go
package credentials
|
|
|
|
import (
|
|
exec "golang.org/x/sys/execabs"
|
|
)
|
|
|
|
// DetectDefaultStore return the default credentials store for the platform if
|
|
// the store executable is available.
|
|
func DetectDefaultStore(store string) string {
|
|
platformDefault := defaultCredentialsStore()
|
|
|
|
// user defined or no default for platform
|
|
if store != "" || platformDefault == "" {
|
|
return store
|
|
}
|
|
|
|
if _, err := exec.LookPath(remoteCredentialsPrefix + platformDefault); err == nil {
|
|
return platformDefault
|
|
}
|
|
return ""
|
|
}
|