bugfix in platform check

This commit is contained in:
ori agranat
2019-12-09 22:10:10 +02:00
parent 4838b2fdd9
commit e1586a3dac

View File

@@ -69,7 +69,7 @@ public enum Platform {
}
}
private static Platform getCurrentPlatform() {
public static Platform getCurrentPlatform() {
if (OS_NAME.contains("Windows")) {
if (OS_ARCH.equals("amd64")) return Platform.WINDOWS_64;
}