##// END OF EJS Templates
scripts: introduce source_format.py to fix up the module name in file headers
scripts: introduce source_format.py to fix up the module name in file headers

File last commit:

r8549:f8971422 default
r8549:f8971422 default
Show More
run-all-cleanup
14 lines | 398 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 files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/source_format.py
hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/pyflakes
echo "no blocking problems found by $0"