From 75ad55211397345e5192a19513d478b913028506 Mon Sep 17 00:00:00 2001 From: Nicholas Chammas Date: Sat, 2 Aug 2014 19:13:21 -0400 Subject: [PATCH] make check output style consistent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The RAT and PEP8 checks don’t print a blank line after successful runs. The scalastyle check shouldn’t either. --- dev/scalastyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/scalastyle b/dev/scalastyle index d9f2b91a3a091..b53053a04ff42 100755 --- a/dev/scalastyle +++ b/dev/scalastyle @@ -30,5 +30,5 @@ if test ! -z "$ERRORS"; then echo -e "Scalastyle checks failed at following occurrences:\n$ERRORS" exit 1 else - echo -e "Scalastyle checks passed.\n" + echo -e "Scalastyle checks passed." fi