Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
Chandra Pamuluri committed Sep 29, 2023
1 parent 96e9acd commit d6bcf29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/command/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit d6bcf29

Please sign in to comment.