Commit 220b12b1 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Look for correct property name.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1361 b35dd754-fafc-0310-a699-88a17e54d16e
parent 45fe7a15
...@@ -98,9 +98,9 @@ public class Launcher { ...@@ -98,9 +98,9 @@ public class Launcher {
} }
binDir = new File("").getAbsoluteFile(); binDir = new File("").getAbsoluteFile();
// See if the app.dir property is set. If so, use it to find the executable. // See if the appdir property is set. If so, use it to find the executable.
if (System.getProperty("app.dir") != null) { if (System.getProperty("appdir") != null) {
binDir = new File(System.getProperty("app.dir")); binDir = new File(System.getProperty("appdir"));
} }
configFile = new File(new File(binDir.getParent(), "conf"), configFile = new File(new File(binDir.getParent(), "conf"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment