summaryrefslogtreecommitdiff
path: root/scripts/build/checkHtmlFileDates
blob: 9d9a2f2625d0c4c2c1507b37551e402fbe436337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /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