# HG changeset patch # User Mads Kiilerich # Date 2020-03-12 22:21:01 # Node ID 8d663d23ab85bdd823788fc449aba484bfd33aa4 # Parent 38a833e742ea75bf90ade327a5ee78861a12014f scripts: make output from run-all-cleanup easier to parse Make it clear that it didn't end prematurely due to some invisible problem. diff --git a/scripts/run-all-cleanup b/scripts/run-all-cleanup --- a/scripts/run-all-cleanup +++ b/scripts/run-all-cleanup @@ -10,3 +10,4 @@ scripts/generate-ini.py scripts/whitespacecleanup.sh hg loc 'set:!binary()&grep("^#!.*python")' '*.py' | xargs scripts/pyflakes +echo "no blocking problems found by $0" diff --git a/scripts/whitespacecleanup.sh b/scripts/whitespacecleanup.sh --- a/scripts/whitespacecleanup.sh +++ b/scripts/whitespacecleanup.sh @@ -20,4 +20,5 @@ hg loc 'set:!binary()&grep("^#!")&!(**_t # isort is installed from dev_requirements.txt hg loc 'set:!binary()&grep("^#!.*python")' '*.py' | xargs isort --line-width 160 --lines-after-imports 2 +echo "diff after $0:" hg diff