We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a662679 commit b24cd70Copy full SHA for b24cd70
pkg/cmd/cli/cmd/login/loginoptions.go
@@ -265,7 +265,7 @@ func (o *LoginOptions) gatherProjectInfo() error {
265
projectsList, err := oClient.Projects().List(kapi.ListOptions{})
266
// if we're running on kube (or likely kube), just set it to "default"
267
if kerrors.IsNotFound(err) || kerrors.IsForbidden(err) {
268
- fmt.Fprintf(o.Out, "Using \"default\". You can switch projects with '%s project <projectname>':\n\n", o.CommandName)
+ fmt.Fprintf(o.Out, "Using \"default\". You can switch projects with:\n\n '%s project <projectname>'", o.CommandName)
269
o.Project = "default"
270
return nil
271
}
0 commit comments