Skip to content

Commit

Permalink
(minor) avoid spurious 'repo missing' messages for repo patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
sitaramc committed Sep 25, 2012
1 parent 9606e35 commit 3fe8ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Gitolite/Conf/Load.pm
Expand Up @@ -211,7 +211,7 @@ sub load_1 {
trace( 3, $repo );

if ( repo_missing($repo) ) {
trace( 1, "repo '$repo' missing" );
trace( 1, "repo '$repo' missing" ) if $repo =~ $REPONAME_PATT;
return;
}
_chdir("$rc{GL_REPO_BASE}/$repo.git");
Expand Down

0 comments on commit 3fe8ecf

Please sign in to comment.