[Pkg-kde-commits] rev 467 - scripts

Adeodato Simó dato-guest@costa.debian.org
Mon, 14 Feb 2005 19:22:57 +0100


Author: dato-guest
Date: 2005-02-14 19:22:56 +0100 (Mon, 14 Feb 2005)
New Revision: 467

Modified:
   scripts/tag-pkg-kde
Log:
Use -r $REV for the svn cat command too, as otherwise the most recent
version of the package will be offered.


Modified: scripts/tag-pkg-kde
===================================================================
--- scripts/tag-pkg-kde	2005-02-14 18:15:31 UTC (rev 466)
+++ scripts/tag-pkg-kde	2005-02-14 18:22:56 UTC (rev 467)
@@ -44,7 +44,7 @@
 
 CHANGELOG=`mktemp`
 
-svn cat $TRUNK/$PACKAGE/debian/changelog >$CHANGELOG
+svn cat -r "$REV" $TRUNK/$PACKAGE/debian/changelog >$CHANGELOG
 VERSION=`dpkg-parsechangelog -l$CHANGELOG |
 	    awk '/^Version:/ { sub(/[0-9]+:/, ""); print $2 }'`