Skip to content

Commit 2ee106b

Browse files
authored
fix: Change deprecation notice output to stderr (#2156)
1 parent a76889c commit 2ee106b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
)
1010

1111
func main() {
12-
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")
12+
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")
1313

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

0 commit comments

Comments
 (0)