2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +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 #!/bin/sh
commit=
for i for i
do do
z=`expr "$i" : 'http://www.ietf.org/internet-drafts/\(.*\)'` z=`expr "$i" : 'http://www.ietf.org/internet-drafts/\(.*\)'`
@@ -34,9 +35,12 @@ do
then then
rm $old rm $old
cvs delete $old cvs delete $old
else commit="$commit $old"
old=
fi fi
cvs commit -m "new draft" $i $old commit="$commit $i"
fi fi
done done
if test -n "$commit"
then
cvs commit -m "new draft" $commit
fi