libs-base/Tools/mkchlog.sh
theraven ae0204e45d Tweaks to mkchlog script.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32032 72102866-910b-0410-8b05-ffd578937521
2011-02-10 10:56:45 +00:00

6 lines
246 B
Bash

#!/bin/sh
svn log -rHEAD --xml --verbose | xsltproc /usr/local/share/svn2cl/svn2cl.xsl - > ChangeLog.new
cat ChangeLog >> ChangeLog.new
mv ChangeLog.new ChangeLog
$EDITOR ChangeLog
svn commit -m 'Added ChangeLog entry from last commit' ChangeLog