2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

consolidate commits

This commit is contained in:
Mark Andrews 2004-06-08 07:12:10 +00:00
parent 5ce5a3c0e9
commit 206a2ec171

View File

@ -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