diff options
| author | christos <christos@NetBSD.org> | 2004-11-06 23:53:21 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2004-11-06 23:53:21 +0000 |
| commit | dfd98c8a16d53dff0d1bdca29bcddc6571054129 (patch) | |
| tree | 24f3891f470a8e79f037a71c4b43266f23767859 /dist/bind/doc/draft/update | |
| parent | aefec4290d9fd9e83eaf8b2b4ada33ff37ecaedb (diff) | |
Import bind-9.3.0
Diffstat (limited to 'dist/bind/doc/draft/update')
| -rw-r--r-- | dist/bind/doc/draft/update | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/dist/bind/doc/draft/update b/dist/bind/doc/draft/update index 766f15b08e6..6ac20904ab2 100644 --- a/dist/bind/doc/draft/update +++ b/dist/bind/doc/draft/update @@ -1,4 +1,5 @@ #!/bin/sh +commit= for i do z=`expr "$i" : 'http://www.ietf.org/internet-drafts/\(.*\)'` @@ -34,9 +35,12 @@ do then rm $old cvs delete $old - else - old= + commit="$commit $old" fi - cvs commit -m "new draft" $i $old + commit="$commit $i" fi done +if test -n "$commit" +then + cvs commit -m "new draft" $commit +fi |
