mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Update pre-commit.git-hook for ticket 29553
- handle older source layout - handle empty changes directories - "set -e" so that we exit if there's a problem.
This commit is contained in:
parent
1bff5646e6
commit
b3b737b875
5
changes/ticket29553
Normal file
5
changes/ticket29553
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor bugfixes (developer tools):
|
||||||
|
- Update our pre-commit.git-hook script to work correctly on older Tor
|
||||||
|
branches and release branches without any changes files,
|
||||||
|
and to actually exit when something fails. Fixes bug 29553; bugfix on
|
||||||
|
0.4.0.2-alpha.
|
@ -10,16 +10,31 @@ workdir=$(git rev-parse --show-toplevel)
|
|||||||
|
|
||||||
cd "$workdir" || exit 1
|
cd "$workdir" || exit 1
|
||||||
|
|
||||||
python scripts/maint/lintChanges.py ./changes/*
|
set -e
|
||||||
|
|
||||||
perl scripts/maint/checkSpace.pl -C \
|
if [ ! -z "ls ./changes/*" ]; then
|
||||||
src/lib/*/*.[ch] \
|
python scripts/maint/lintChanges.py ./changes/*
|
||||||
src/core/*/*.[ch] \
|
fi
|
||||||
src/feature/*/*.[ch] \
|
|
||||||
src/app/*/*.[ch] \
|
if [ -d src/lib ]; then
|
||||||
src/test/*.[ch] \
|
# This is the layout in 0.3.5
|
||||||
src/test/*/*.[ch] \
|
perl scripts/maint/checkSpace.pl -C \
|
||||||
src/tools/*.[ch]
|
src/lib/*/*.[ch] \
|
||||||
|
src/core/*/*.[ch] \
|
||||||
|
src/feature/*/*.[ch] \
|
||||||
|
src/app/*/*.[ch] \
|
||||||
|
src/test/*.[ch] \
|
||||||
|
src/test/*/*.[ch] \
|
||||||
|
src/tools/*.[ch]
|
||||||
|
elif [ -d src/common]; then
|
||||||
|
# This was the layout before 0.3.5
|
||||||
|
perl scripts/maint/checkSpace.pl -C \
|
||||||
|
src/common/*/*.[ch] \
|
||||||
|
src/or/*/*.[ch] \
|
||||||
|
src/test/*.[ch] \
|
||||||
|
src/test/*/*.[ch] \
|
||||||
|
src/tools/*.[ch]
|
||||||
|
fi
|
||||||
|
|
||||||
if test -e scripts/maint/checkIncludes.py; then
|
if test -e scripts/maint/checkIncludes.py; then
|
||||||
python scripts/maint/checkIncludes.py
|
python scripts/maint/checkIncludes.py
|
||||||
|
Loading…
Reference in New Issue
Block a user