diff options
-rwxr-xr-x | src/update-gitjoe.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/update-gitjoe.pl b/src/update-gitjoe.pl index ff2c760..473d9e8 100755 --- a/src/update-gitjoe.pl +++ b/src/update-gitjoe.pl @@ -14,6 +14,7 @@ sub get_repos_index { while (my $dir = readdir(DIR)) { next if ($dir =~ m/^\./); next if (!(-e $home_dir . $dir . '/git-daemon-export-ok')); + print $dir; $repos[$i] = $dir; $i += 1; } |