libs-base/Tools/mkchlog.sh

6 lines
218 B
Bash
Raw Normal View History

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