From 723ed39fb5067e3827a3e1f5434fb111b8e498cc Mon Sep 17 00:00:00 2001 From: Nicholas Chammas Date: Sat, 2 Aug 2014 19:24:00 -0400 Subject: [PATCH] always delete the report file --- dev/lint-python | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/lint-python b/dev/lint-python index 5f58015e1ecde..7a79644038d7d 100755 --- a/dev/lint-python +++ b/dev/lint-python @@ -34,9 +34,9 @@ if [ $pep8_status ] then echo "PEP8 checks failed." cat "$PEP8_REPORT_PATH" - exit 1 else echo "PEP8 checks passed." fi rm -f "$PEP8_REPORT_PATH" +exit $pep8_status