2b15cb3d09
Thanks to roberto for providing pointers to wedge this into HEAD. Approved by: roberto
17 lines
297 B
Bash
Executable File
17 lines
297 B
Bash
Executable File
#! /bin/sh
|
|
|
|
bk version > /dev/null 2>&1 || exit 0
|
|
|
|
for i in `find * -type f -name '*.html' -print | grep -v SCCS/`
|
|
do
|
|
# echo $i
|
|
set `bk diffs $i | wc -l`
|
|
lines=$1
|
|
case "$lines" in
|
|
0) ;;
|
|
*) echo "Processing <$i>"
|
|
../scripts/build/updateBEDate $i
|
|
;;
|
|
esac
|
|
done
|