Archived
1
0

Fix empty arg to tags

This commit is contained in:
Mercier Pierre-Olivier 2013-09-24 00:27:20 +02:00
parent dd088dd210
commit 9f7a2f1f15

View File

@ -34,7 +34,7 @@ if ($ref =~ m<^refs/tags(/.+)$>)
my $tag = $1;
my @args;
while ($tag =~ m<[,/]([^,]+)>g) {
while ($tag =~ m<[,/]([^,]*)>g) {
push @args, $1;
}