Fix empty arg to tags
This commit is contained in:
parent
dd088dd210
commit
9f7a2f1f15
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user