Skip to content

Commit

Permalink
Update cmd/glasskube/cmd/install.go
Browse files Browse the repository at this point in the history
Co-authored-by: Jakob Steiner <[email protected]>
  • Loading branch information
christophenne and kosmoz authored Sep 16, 2024
1 parent be05c00 commit d6bb683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/glasskube/cmd/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ var installCmd = &cobra.Command{
createNamespace := false
if installCmdOptions.NamespaceOptions.Namespace != "" {
if ok, err := namespaces.IsNamespaceInstalled(ctx, cs, installCmdOptions.NamespaceOptions.Namespace); !ok {
fmt.Printf(" * Namespace %v does not exist and will be created\n",
fmt.Fprintf(os.Stderr, " * Namespace %v does not exist and will be created\n",
installCmdOptions.NamespaceOptions.Namespace)
createNamespace = true
} else if err != nil {
Expand Down

0 comments on commit d6bb683

Please sign in to comment.