From: Pavel Charvat Date: Sat, 9 Aug 2014 05:37:49 +0000 (+0000) Subject: Packages: Fixed bug in debian/tag-release script. X-Git-Tag: v6.1~1 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=1b3dd895c9710a8f56cca56b5dd11a58427f63f2;p=libucw.git Packages: Fixed bug in debian/tag-release script. --- diff --git a/debian/tag-release b/debian/tag-release index 5869f83c..5fd6dc92 100755 --- a/debian/tag-release +++ b/debian/tag-release @@ -26,7 +26,7 @@ if (defined($dry) && $dry eq "-n") { my $vv = $ARGV[0]; -my $v = `git describe`; +my $v = `git describe --tags`; chomp $v; $v =~ s/^v// or die; $v =~ s/-.*//;