From d6bcf29fb94c16c95266feb626b48d342721807b Mon Sep 17 00:00:00 2001 From: Chandra Pamuluri Date: Fri, 29 Sep 2023 11:58:02 -0500 Subject: [PATCH] change --- pkg/command/context.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]