Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
allow dots in project names
  • Loading branch information
moritz committed Sep 30, 2014
1 parent 82d28e9 commit 445cadb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/lib/P6Project/Info.pm
Expand Up @@ -49,7 +49,7 @@ sub get_projects {
given ($home) {
when (/github/) {
$projects->{$name}->{'home'} = 'github';
my ($auth, $repo_name) = $url =~ m[git://$home/([^/]+)/([^\.]+)\.git];
my ($auth, $repo_name) = $url =~ m[git://$home/([^/]+)/([^/]+)\.git];
$projects->{$name}->{'auth'} = $auth;
$projects->{$name}->{'repo_name'} = $repo_name;
}
Expand Down

0 comments on commit 445cadb

Please sign in to comment.