James Moger
2013-01-23 d5c21904ca6aaef2528084e96e866824830aa375
Fixed properties path regression in the Build class
1 files modified
2 ■■■ changed files
src/com/gitblit/build/Build.java 2 ●●● patch | view | raw | blame | history
src/com/gitblit/build/Build.java
@@ -245,7 +245,7 @@
        Properties properties = new Properties();
        FileInputStream is = null;
        try {
            is = new FileInputStream(Constants.PROPERTIES_FILE);
            is = new FileInputStream(new File("distrib", Constants.PROPERTIES_FILE));
            properties.load(is);
        } catch (Throwable t) {
            t.printStackTrace();