mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-27 02:30:53 +00:00
6 lines
218 B
Bash
6 lines
218 B
Bash
|
#!/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'
|