diff options
author | James Moger <james.moger@gitblit.com> | 2013-01-23 08:37:11 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-01-23 08:37:11 -0500 |
commit | d5c21904ca6aaef2528084e96e866824830aa375 (patch) | |
tree | 40d851f1c43f889d37df9a7559d916b42b16f5c6 | |
parent | 94ef80069e978137edc74cb428d4d52cdedbae5c (diff) | |
download | gitblit-d5c21904ca6aaef2528084e96e866824830aa375.tar.gz gitblit-d5c21904ca6aaef2528084e96e866824830aa375.zip |
Fixed properties path regression in the Build class
-rw-r--r-- | src/com/gitblit/build/Build.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/gitblit/build/Build.java b/src/com/gitblit/build/Build.java index 21c16298..3a9ed751 100644 --- a/src/com/gitblit/build/Build.java +++ b/src/com/gitblit/build/Build.java @@ -245,7 +245,7 @@ public class Build { 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();
|