Cleanup node failure message

This commit is contained in:
Tim St. Clair 2016-08-29 13:23:56 -07:00
parent 033e473e12
commit ba9aa1cb63
No known key found for this signature in database
GPG Key ID: 434D16BCEF479EAB

View File

@ -272,7 +272,7 @@ func main() {
// Set the exit code if there were failures // Set the exit code if there were failures
if !exitOk { if !exitOk {
fmt.Printf("Failure: %d errors encountered.", errCount) fmt.Printf("Failure: %d errors encountered.\n", errCount)
callGubernator(*gubernator) callGubernator(*gubernator)
os.Exit(1) os.Exit(1)
} }