Files @ bee01ae374a2
Branch filter:

Location: kallithea/scripts/run-all-cleanup - annotation

Mads Kiilerich
hg: support Mercurial 5.4

rc0 has no release notes yet, but it seems to work and the test suite pass ...
#!/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"