1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

See ChangeLog: Sat Jan 16 09:27:30 CET 1999 Werner Koch

This commit is contained in:
Werner Koch 1999-01-16 08:29:29 +00:00
parent e99e43cd53
commit 29c08419db
23 changed files with 203 additions and 122 deletions

View file

@ -23,5 +23,31 @@ for i in `find . -name Changes -print`; do
fi
done
# Execute canned cvs remove commands
for i in `find . -name cvs-remove -print`; do
dir=`dirname $i`
if [ -s $dir/cvs-remove ]; then
here=`pwd`
cd $dir
if cvs remove -f `cat cvs-remove`; then
rm cvs-remove
fi
cd $here
fi
done
# Execute canned cvs add commands
for i in `find . -name cvs-add -print`; do
dir=`dirname $i`
if [ -s $dir/cvs-add ]; then
here=`pwd`
cd $dir
if cvs add `cat cvs-add`; then
rm cvs-add
fi
cd $here
fi
done
cvs commit -m "See ChangeLog: $date $name" $*