From 3af4f267b3b2c6d4221b6cc38bd0fbaf0b1e89df Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 20 Sep 2015 19:56:10 -0700 Subject: [PATCH] Lint script would incorrectly report success --- script/lint | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/lint b/script/lint index c8b65f99677..75667ef88a4 100755 --- a/script/lint +++ b/script/lint @@ -13,7 +13,7 @@ PYLINT_STATUS=$? if [ $FLAKE8_STATUS -eq 0 ] then - exit $FLAKE8_STATUS -else exit $PYLINT_STATUS +else + exit $FLAKE8_STATUS fi