From 9b35f84f557d00190933f8204f504e158d0a2c5c Mon Sep 17 00:00:00 2001 From: Sitaram Chamarty Date: Tue, 13 Apr 2010 10:07:59 +0530 Subject: [PATCH] fix bug in 7bfb367 that causes "@all.git" to be created! --- src/gl-compile-conf | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gl-compile-conf b/src/gl-compile-conf index ab4e3d6..2d9de2f 100755 --- a/src/gl-compile-conf +++ b/src/gl-compile-conf @@ -389,6 +389,7 @@ wrap_chdir("$repo_base_abs"); for my $repo (sort keys %repos) { next unless $repo =~ $REPONAME_PATT; next if $repo =~ m(^EXTCMD/); # these are not real repos + next if $repo eq '@all'; unless (-d "$repo.git") { print STDERR "creating $repo...\n"; new_repo($repo, "$GL_ADMINDIR/hooks/common");