diff --git a/core/src/main/java/com/threerings/getdown/data/EnvConfig.java b/core/src/main/java/com/threerings/getdown/data/EnvConfig.java index 6de4e2e6..1d66ebbd 100644 --- a/core/src/main/java/com/threerings/getdown/data/EnvConfig.java +++ b/core/src/main/java/com/threerings/getdown/data/EnvConfig.java @@ -139,9 +139,10 @@ public static EnvConfig create (String[] argv, List notes) { } } - // ensure that we were able to fine an app dir + // if no appdir was provided, default to the current working directory if (appDir == null) { - return null; // caller will report problem to user + appDir = System.getProperty("user.dir"); + appDirProv = "default (cwd)"; } notes.add(Note.info("Using appdir from " + appDirProv + ": " + appDir));