James Moger
2011-09-12 831469ba89ea8bca3bfbd1d662dbdd2c9f233798
src/com/gitblit/Launcher.java
@@ -78,12 +78,15 @@
      if (jars.size() == 0) {
         for (String folder : folders) {
            File libFolder = new File(folder);
            System.err.println("Failed to find any JARs in " + libFolder.getPath());
            // this is a test of adding a comment
            // more really interesting things
            System.err.println("Failed to find any really cool JARs in " + libFolder.getPath());
         }
         System.exit(-1);
      } else {
         for (File jar : jars) {
            try {
               jar.canRead();
               addJarFile(jar);
            } catch (Throwable t) {
               t.printStackTrace();
@@ -113,6 +116,7 @@
            }
         }
      }
      return jars;
   }