Skip to content

Commit

Permalink
fix: Change deprecation notice output to stderr (#2156)
Browse files Browse the repository at this point in the history
  • Loading branch information
halamix2 authored Jun 27, 2024
1 parent a76889c commit 2ee106b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
)

func main() {
fmt.Print("WARNING: All commands within v2 are deprecated. We are designing v3 of kyma CLI with a new set of commands that will be first released within alpha command group.\n\n")
fmt.Fprint(os.Stderr, "WARNING: All commands within v2 are deprecated. We are designing v3 of kyma CLI with a new set of commands that will be first released within alpha command group.\n\n")

command := kyma.NewCmd(cli.NewOptions())

Expand Down

0 comments on commit 2ee106b

Please sign in to comment.