James Moger
2011-05-20 f90dc635928f367f9078f814488c7e385ebc4e2e
src/com/gitblit/utils/JGitUtils.java
@@ -80,6 +80,9 @@
   public static List<String> getNestedRepositories(File repositoriesFolder, File folder, boolean exportAll, boolean readNested) {
      String basefile = repositoriesFolder.getAbsolutePath();
      List<String> list = new ArrayList<String>();
      if (folder == null || !folder.exists()) {
         return list;
      }
      for (File file : folder.listFiles()) {
         if (file.isDirectory() && !file.getName().equalsIgnoreCase(Constants.DOT_GIT)) {
            // if this is a git repository add it to the list