Don't be silent about which files are malformatted

This commit is contained in:
richard-dds 2018-08-23 17:01:26 -04:00
parent b0dbedce57
commit 4fa4e39e21

View File

@ -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