##// END OF EJS Templates
scripts: make output from run-all-cleanup easier to parse...
scripts: make output from run-all-cleanup easier to parse Make it clear that it didn't end prematurely due to some invisible problem.

File last commit:

r8164:8d663d23 default
r8164:8d663d23 default
Show More
run-all-cleanup
13 lines | 301 B | text/plain | TextLexer
#!/bin/sh
# Convenience script for running various idempotent source code cleanup scripts
set -e
set -x
scripts/docs-headings.py
scripts/generate-ini.py
scripts/whitespacecleanup.sh
hg loc 'set:!binary()&grep("^#!.*python")' '*.py' | xargs scripts/pyflakes
echo "no blocking problems found by $0"