1
0
mirror of synced 2026-08-05 06:56:56 +00:00

chore: drop support for Windows 32 bit (#673)

This commit is contained in:
Max Schmitt
2021-10-28 17:26:50 +02:00
committed by GitHub
parent a60b0a9b78
commit c61d1da352
4 changed files with 2 additions and 9 deletions
@@ -131,7 +131,7 @@ public class DriverJar extends Driver {
private static String platformDir() {
String name = System.getProperty("os.name").toLowerCase();
if (name.contains("windows")) {
return System.getProperty("os.arch").equals("amd64") ? "win32_x64" : "win32";
return "win32_x64";
}
if (name.contains("linux")) {
return "linux";