Skip to content

Commit 84ab3cd

Browse files
committed
Fixing a copy-paste typo of command line args in "ocm-backplane cloud console" from the "ocm-backplane cloud credentials" command
1 parent 594bdf0 commit 84ab3cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/ocm-backplane/cloud/console.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ func runConsole(cmd *cobra.Command, argv []string) (err error) {
122122
}
123123

124124
// ============Get Backplane URl ==========================
125-
if credentialArgs.backplaneURL != "" { // Overwrite if parameter is set
126-
backplaneConfiguration.URL = credentialArgs.backplaneURL
125+
if consoleArgs.backplaneURL != "" { // Overwrite if parameter is set
126+
backplaneConfiguration.URL = consoleArgs.backplaneURL
127127
}
128128
logger.Infof("Using backplane URL: %s\n", backplaneConfiguration.URL)
129129

0 commit comments

Comments
 (0)