From 976c06b9a1641e51b64db6e26719bdb3ebd6306a Mon Sep 17 00:00:00 2001 From: Josh Branham Date: Sun, 5 Jul 2026 16:30:07 -0600 Subject: [PATCH] fix: correct elevate command in service login prompt --- cmd/ocm-backplane/login/login.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ocm-backplane/login/login.go b/cmd/ocm-backplane/login/login.go index 97d83081..fd1eee6e 100644 --- a/cmd/ocm-backplane/login/login.go +++ b/cmd/ocm-backplane/login/login.go @@ -288,7 +288,7 @@ func runLogin(cmd *cobra.Command, argv []string) (err error) { if !isHostedControlPlane { return fmt.Errorf("manifestworks are only available for hosted control plane clusters") } - listManifestWork := fmt.Sprintf("ocm backplane elevate -- oc get manifestworks -n %s -l api.openshift.com/id=%s", managingClusterName, targetClusterID) + listManifestWork := fmt.Sprintf("ocm-backplane elevate -n -- get manifestworks -n %s -l api.openshift.com/id=%s", managingClusterName, targetClusterID) fmt.Println("A list of associated manifestwork for your given cluster can be found using:") fmt.Println("\t", listManifestWork)