diff options
-rw-r--r-- | src/main/kotlin/Main.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/Main.kt b/src/main/kotlin/Main.kt index dc5304a..89ec0d2 100644 --- a/src/main/kotlin/Main.kt +++ b/src/main/kotlin/Main.kt @@ -169,13 +169,13 @@ private fun findAllChanges( } } println("") - println("found $errors errors") + println("Found $errors PRs with errors") + println("Loaded $done PRs correctly") if (errors > 0) { if (hideWhenError) { exitProcess(-1) } } - println("Loaded $done PRs") } inline fun <T> Pattern.matchMatcher(text: String, consumer: Matcher.() -> T) = |