diff --git a/zssh/zscp/main.go b/zssh/zscp/main.go index 5e8aae5..f98b44c 100644 --- a/zssh/zscp/main.go +++ b/zssh/zscp/main.go @@ -199,5 +199,7 @@ func after(value string, a string) string { func main() { rootCmd.AddCommand(enrollment.NewEnrollCommand()) e := rootCmd.Execute() - logrus.Error(e) + if e != nil { + logrus.Error(e) + } } diff --git a/zssh/zssh/main.go b/zssh/zssh/main.go index ecf9ae9..cd10ec6 100644 --- a/zssh/zssh/main.go +++ b/zssh/zssh/main.go @@ -52,5 +52,7 @@ func init() { func main() { rootCmd.AddCommand(enrollment.NewEnrollCommand()) e := rootCmd.Execute() - logrus.Error(e) + if e != nil { + logrus.Error(e) + } }