mirror of https://github.com/docker/cli.git
context use: skip validation for "default" context
This code was handling validation and parsing, only to discard the results if it was the default context. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
7963778e0a
commit
cee286ff63
|
@ -25,15 +25,16 @@ func newUseCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
|
|
||||||
// RunUse set the current Docker context
|
// RunUse set the current Docker context
|
||||||
func RunUse(dockerCli command.Cli, name string) error {
|
func RunUse(dockerCli command.Cli, name string) error {
|
||||||
if err := store.ValidateContextName(name); err != nil && name != "default" {
|
// configValue uses an empty string for "default"
|
||||||
|
var configValue string
|
||||||
|
if name != command.DefaultContextName {
|
||||||
|
if err := store.ValidateContextName(name); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if _, err := dockerCli.ContextStore().GetMetadata(name); err != nil && name != "default" {
|
if _, err := dockerCli.ContextStore().GetMetadata(name); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
configValue := name
|
configValue = name
|
||||||
if configValue == "default" {
|
|
||||||
configValue = ""
|
|
||||||
}
|
}
|
||||||
dockerConfig := dockerCli.ConfigFile()
|
dockerConfig := dockerCli.ConfigFile()
|
||||||
dockerConfig.CurrentContext = configValue
|
dockerConfig.CurrentContext = configValue
|
||||||
|
|
Loading…
Reference in New Issue