Merge pull request #4776 from thaJeztah/fix_shadow

cli-plugins: helloworld: rename var that collided with import
This commit is contained in:
Sebastiaan van Stijn 2024-01-11 22:50:12 +01:00 committed by GitHub
commit a745bffb86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@ func main() {
}
var (
who, context string
who, optContext string
preRun, debug bool
)
cmd := &cobra.Command{
@ -65,7 +65,7 @@ func main() {
fmt.Fprintf(dockerCli.Err(), "Plugin debug mode enabled")
}
switch context {
switch optContext {
case "Christmas":
fmt.Fprintf(dockerCli.Out(), "Merry Christmas!\n")
return nil
@ -92,7 +92,7 @@ func main() {
// These are intended to deliberately clash with the CLIs own top
// level arguments.
flags.BoolVarP(&debug, "debug", "D", false, "Enable debug")
flags.StringVarP(&context, "context", "c", "", "Is it Christmas?")
flags.StringVarP(&optContext, "context", "c", "", "Is it Christmas?")
cmd.AddCommand(goodbye, apiversion, exitStatus2)
return cmd