mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-27 00:58:39 -04:00
check if the pdf version of the ARM needs to be committed
This commit is contained in:
parent
6a2337c066
commit
55e7afa4ea
1 changed files with 9 additions and 0 deletions
9
util/commit-arm.sh
Normal file
9
util/commit-arm.sh
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
ps=`git log -1 --date=raw --pretty=format:%ad -- doc/arm/Bv9ARM.pdf | awk '{print $1;}'`
|
||||
for f in doc/arm/*.html
|
||||
do
|
||||
ts=`git log -1 --date=raw --pretty=format:%ad -- $f | awk '{print $1;}'`
|
||||
if test ${ts:-0} -gt ${ps:-0}
|
||||
then
|
||||
echo commit needed.
|
||||
fi
|
||||
done
|
||||
Loading…
Reference in a new issue