We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4677bce + 9d87d64 commit 3f34e68Copy full SHA for 3f34e68
cmd/minikube/cmd/config/profile.go
@@ -65,7 +65,8 @@ var ProfileCmd = &cobra.Command{
65
}
66
67
if !pkgConfig.ProfileExists(profile) {
68
- out.FailureT("if you want to create a profile you can by this command: minikube start -p {{.profile_name}}", out.V{"profile_name": profile})
+ out.ErrT(out.Tip, `if you want to create a profile you can by this command: minikube start -p {{.profile_name}}`, out.V{"profile_name": profile})
69
+ os.Exit(0)
70
71
72
err := Set(pkgConfig.MachineProfile, profile)
0 commit comments