clean cli.Run error message (#8191)

This commit is contained in:
Davor Kapsa 2020-06-30 13:12:29 +02:00 committed by GitHub
parent eafb9ffd3c
commit 4cd30f06b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ func realMain() int {
exitCode, err := cli.Run()
if err != nil {
fmt.Fprintf(os.Stderr, "Error executing CLI: %s\n", err.Error())
fmt.Fprintf(os.Stderr, "Error executing CLI: %v\n", err)
return 1
}