0
0
mirror of https://github.com/thegeeklab/git-sv.git synced 2024-11-21 22:10:39 +00:00

refactor: better log on cli failure

This commit is contained in:
Beatriz Vieira 2021-09-24 17:50:59 -03:00
parent 1cb825c4b0
commit d02c8b59f6

View File

@ -140,7 +140,7 @@ func main() {
} }
if apperr := app.Run(os.Args); apperr != nil { if apperr := app.Run(os.Args); apperr != nil {
log.Fatal("failed to run cli, error: ", apperr) log.Fatal("ERROR: ", apperr)
} }
} }