Skip to content

Commit 6506465

Browse files
committed
Fixed issue with missing /
1 parent add4779 commit 6506465

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/utils/src/main/java/processing/utils/Settings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private static File getFolderForPlatform() throws SettingsFolderException {
6161
}
6262
return folder;
6363
}
64-
var subfolder = ".config/processing";
64+
var subfolder = "/.config/processing";
6565
var isSudo = System.getenv("SUDO_USER");
6666
if (isSudo == null || isSudo.isEmpty()) {
6767
return new File(System.getProperty("user.home") + subfolder);

0 commit comments

Comments
 (0)