remove redundant file separator char for linux-specific branch

This commit is contained in:
vddCore 2023-01-11 23:20:44 +01:00
parent 98c58557fe
commit 8f0ce915a0

View file

@ -207,9 +207,7 @@ public final class SignLink implements Runnable {
String xdgHome = System.getenv("XDG_DATA_HOME"); String xdgHome = System.getenv("XDG_DATA_HOME");
if (xdgHome != null) { if (xdgHome != null) {
homeDir = xdgHome homeDir = xdgHome + "/2009scape/";
+ File.separatorChar
+ "2009scape/";
} else { } else {
homeDir += ".local/share/2009scape/"; homeDir += ".local/share/2009scape/";
} }