Merge pull request #1319 from antonlindstrom/check-ok-output

Add explicit OK output to check command
This commit is contained in:
Alexander Neumann 2017-10-03 14:51:31 +02:00
commit 7843341da3
1 changed files with 3 additions and 0 deletions

View File

@ -176,5 +176,8 @@ func runCheck(opts CheckOptions, gopts GlobalOptions, args []string) error {
if errorsFound {
return errors.Fatal("repository contains errors")
}
Verbosef("No errors were found\n")
return nil
}