diff --git a/pkg/command/context.go b/pkg/command/context.go index 234400e6b..f5eb4e0d1 100644 --- a/pkg/command/context.go +++ b/pkg/command/context.go @@ -831,7 +831,7 @@ func deleteCtx(_ *cobra.Command, args []string) error { return nil } } - installed, _, _, _ := getInstalledAndMissingContextPlugins() // nolint:dogsled + installed, _, _, _ := getInstalledAndMissingContextPlugins() //nolint:dogsled log.Infof("Deleting entry for cluster %s", name) err := config.RemoveContext(name) if err != nil { @@ -919,7 +919,7 @@ func unsetCtx(_ *cobra.Command, args []string) error { func unsetGivenContext(name string, target configtypes.Target) error { var unset bool - installed, _, _, _ := getInstalledAndMissingContextPlugins() // nolint:dogsled + installed, _, _, _ := getInstalledAndMissingContextPlugins() //nolint:dogsled currentCtxMap, err := config.GetAllCurrentContextsMap() if target != "" && name != "" { ctx, ok := currentCtxMap[target]