We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de18154 commit 50e1151Copy full SHA for 50e1151
1 file changed
src/main/java/org/apposed/appose/util/Environments.java
@@ -93,6 +93,8 @@ public static List<String> systemPath() {
93
public static String apposeEnvsDir() {
94
String envsDir = System.getProperty("appose.envs-dir");
95
if (envsDir != null) return envsDir;
96
+ envsDir = System.getenv("APPOSE_ENVSDIR");
97
+ if (envsDir != null) return envsDir;
98
String userHome = System.getProperty("user.home");
99
return Paths.get(userHome, ".local", "share", "appose").toString();
100
}
0 commit comments