view scripts/run-all-cleanup @ 8906:3fb84c5a6d8f i18n

i18n: updated translation for Greek Currently translated at 99.4% (1075 of 1081 strings)
author Asterios Dimitriou <steve@pci.gr>
date Wed, 20 Jul 2022 21:07:27 +0200
parents 52816813cbec
children
line wrap: on
line source

#!/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"