This commit is contained in:
crschnick
2024-11-20 09:22:20 +00:00
parent 9b20fe7e8e
commit ecdf5119b0
17 changed files with 64 additions and 47 deletions

View File

@@ -260,7 +260,7 @@ public class XPipeInstallation {
String path;
if (OsType.getLocal().equals(OsType.WINDOWS)) {
var pg = System.getenv("ProgramFiles");
var systemPath = Path.of(pg,stage ? "XPipe PTB" : "XPipe");
var systemPath = Path.of(pg, stage ? "XPipe PTB" : "XPipe");
if (Files.exists(systemPath)) {
return systemPath.toString();
}