Skip to content

Commit

Permalink
Fixing not rapping tag hash
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills-optus committed Dec 12, 2016
1 parent 5ef8d2d commit 7a04a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Group/Git.pm
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ sub _repos {
my @files = path('.')->children;
my %tags;
for my $tag ( keys %{ $self->conf->{tags} } ) {
$tags{$tag} = map { $_ => 1 } @{ $self->conf->{tags}{$tag} };
$tags{$tag} = { map { $_ => 1 } @{ $self->conf->{tags}{$tag} } };
}

while ( my $file = shift @files ) {
Expand Down

0 comments on commit 7a04a53

Please sign in to comment.