(minor) avoid spurious 'repo missing' messages for repo patterns

redis
Sitaram Chamarty 2012-09-25 19:05:12 +05:30
parent 9606e35528
commit 3fe8ecf974
1 changed files with 1 additions and 1 deletions

View File

@ -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");