annotate scripts/run-all-cleanup @ 8496:855b37d3bacd stable

Added tag 0.6.2 for changeset 22bfca5da6f5
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Mon, 05 Oct 2020 20:43:59 +0200
parents 8d663d23ab85
children 0a84ef075575
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6060
40edadecda69 run-all-cleanup: fix incorrect interpreter
Søren Løvborg <sorenl@unity3d.com>
parents: 5885
diff changeset
1 #!/bin/sh
5885
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
2
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
3 # Convenience script for running various idempotent source code cleanup scripts
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
4
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
5 set -e
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
6 set -x
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
7
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
8 scripts/docs-headings.py
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
9 scripts/generate-ini.py
f0b9706d8d7e scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
Mads Kiilerich <madski@unity3d.com>
parents:
diff changeset
10 scripts/whitespacecleanup.sh
8240
51af7c12ffb1 cleanup: run pyflakes as a part of scripts/run-all-cleanup
Mads Kiilerich <mads@kiilerich.com>
parents: 6060
diff changeset
11
51af7c12ffb1 cleanup: run pyflakes as a part of scripts/run-all-cleanup
Mads Kiilerich <mads@kiilerich.com>
parents: 6060
diff changeset
12 hg loc 'set:!binary()&grep("^#!.*python")' '*.py' | xargs scripts/pyflakes
8295
8d663d23ab85 scripts: make output from run-all-cleanup easier to parse
Mads Kiilerich <mads@kiilerich.com>
parents: 8240
diff changeset
13 echo "no blocking problems found by $0"