From 4fa4e39e213b638632dd6e1c38213e8c670100ba Mon Sep 17 00:00:00 2001 From: richard-dds Date: Thu, 23 Aug 2018 17:01:26 -0400 Subject: [PATCH] Don't be silent about which files are malformatted --- script/format | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/format b/script/format index 4af70cf4..c8997ed3 100755 --- a/script/format +++ b/script/format @@ -2,8 +2,8 @@ FILES_TO_FORMAT="atst/ tests/ app.py" -if [ $1 == "check" ]; then - pipenv run black --check -q ${FILES_TO_FORMAT} +if [ "$1" == "check" ]; then + pipenv run black --check ${FILES_TO_FORMAT} else pipenv run black ${FILES_TO_FORMAT} fi