Revert change so help is printed on stdout again (#1004)
Fixes #1002 For backwards compatibility reasons, and to follow the need of https://github.com/kubernetes/kubernetes/pull/26077#issuecomment-230818900 the help message should be printed on stdout. Signed-off-by: Marc Khouzam <marc.khouzam@gmail.com>
This commit is contained in:
		@ -372,7 +372,9 @@ func (c *Command) HelpFunc() func(*Command, []string) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	return func(c *Command, a []string) {
 | 
						return func(c *Command, a []string) {
 | 
				
			||||||
		c.mergePersistentFlags()
 | 
							c.mergePersistentFlags()
 | 
				
			||||||
		err := tmpl(c.OutOrStderr(), c.HelpTemplate(), c)
 | 
							// The help should be sent to stdout
 | 
				
			||||||
 | 
							// See https://github.com/spf13/cobra/issues/1002
 | 
				
			||||||
 | 
							err := tmpl(c.OutOrStdout(), c.HelpTemplate(), c)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			c.Println(err)
 | 
								c.Println(err)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user