Generates a changelog based on the SVN log between snapshots.

git-svn-id: https://svn.eduke32.com/eduke32@1515 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
plagman 2009-10-01 05:25:34 +00:00
parent 252df802fb
commit 8d237f149b

View file

@ -84,6 +84,12 @@ then
echo tar cvzf eduke32_src_$date-$head.tar.gz eduke32_$date-$head echo tar cvzf eduke32_src_$date-$head.tar.gz eduke32_$date-$head
tar cvzf eduke32_src_$date-$head.tar.gz eduke32_$date-$head tar cvzf eduke32_src_$date-$head.tar.gz eduke32_$date-$head
rm -r eduke32_$date-$head rm -r eduke32_$date-$head
# output the changelog since last snapshot in the output directory
if [ $lastrevision ]
then
cd $source
svn log $head:$lastrevision > $output/$date-$head/ChangeLog.txt
fi
else else
echo "Nothing to do." echo "Nothing to do."
fi fi