Added svn update to release script to update changelog data.

This commit is contained in:
skarg
2007-09-29 14:49:23 +00:00
parent a6d1183bf6
commit 39f59f6c2d
+2 -1
View File
@@ -13,7 +13,7 @@ then
echo "Tags the current version in subversion."
exit 1
fi
# convert 0.0.0 to 0-0-0
DOTTED_VERSION="$1"
DASHED_VERSION="$(echo "$1" | sed 's/[\.*]/-/g')"
@@ -22,6 +22,7 @@ echo "Creating the release files for version $DOTTED_VERSION"
echo "Creating the $PROJECT change log..."
rm $CHANGELOG
svn update
svn log --xml --verbose | xsltproc svn2cl.xsl - > $CHANGELOG
if [ -z "$CHANGELOG" ]
then