diff options
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 |
