view scripts/run-all-cleanup @ 8770:0a84ef075575

scripts: handle running with pending deleted files Don't fail on files in manifest missing in working directory.
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 11 Oct 2020 10:13:25 +0200
parents 8d663d23ab85
children f8971422795e
line wrap: on
line source

#!/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/pyflakes
echo "no blocking problems found by $0"