Files @ 60612e605e2d
Branch filter:

Location: kallithea/scripts/run-all-cleanup

mads
i18n: fix duplicate entries after fixing odd space before ? in "Don't have an account ?"

Dropping the odd spaces in 462064bd9489 gave some duplicate translation strings
... but there are no actual conflicting translations, so it can be resolved
"trivially".
#!/bin/sh

# Convenience script for running various idempotent source code cleanup scripts

set -e
set -x

hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/deps.py
dot -Tsvg deps.dot > deps.svg

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"