]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/ntp/scripts/build/checkHtmlFileDates
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / ntp / scripts / build / checkHtmlFileDates
1 #! /bin/sh
2
3 bk version > /dev/null 2>&1 || exit 0
4
5 for i in `find * -type f -name '*.html' -print | grep -v SCCS/`
6 do
7     # echo $i
8     set `bk diffs $i | wc -l`
9     lines=$1
10     case "$lines" in
11      0) ;;
12      *) echo "Processing <$i>"
13         ../scripts/build/updateBEDate $i
14         ;;
15     esac
16 done