mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-28 19:20:51 +00:00
Make mkchlog.sh show the changelog so I can check that it actually worked... git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31806 72102866-910b-0410-8b05-ffd578937521
6 lines
236 B
Bash
6 lines
236 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
|
|
$EDITOR ChangeLog
|
|
svn commit -m 'Added ChangeLog entry from last commit'
|