We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 992499d + 53c632f commit 1a61a9dCopy full SHA for 1a61a9d
gitweb/gitweb.perl
@@ -2886,7 +2886,7 @@ sub filter_forks_from_projects_list {
2886
$path =~ s/\.git$//; # forks of 'repo.git' are in 'repo/' directory
2887
next if ($path =~ m!/$!); # skip non-bare repositories, e.g. 'repo/.git'
2888
next unless ($path); # skip '.git' repository: tests, git-instaweb
2889
- next unless (-d $path); # containing directory exists
+ next unless (-d "$projectroot/$path"); # containing directory exists
2890
$pr->{'forks'} = []; # there can be 0 or more forks of project
2891
2892
# add to trie
0 commit comments