mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-22 08:31:07 +03:00
[FIX] Support arch i586 in release file
This commit is contained in:
parent
8e82f5cd84
commit
b3eb0ebb98
2 changed files with 1 additions and 2 deletions
|
@ -46,7 +46,7 @@ private JVMHelper() {
|
|||
|
||||
public static ARCH getArch(String arch) {
|
||||
if (arch.equals("amd64") || arch.equals("x86-64") || arch.equals("x86_64")) return ARCH.X86_64;
|
||||
if (arch.equals("i386") || arch.equals("i686") || arch.equals("x86")) return ARCH.X86;
|
||||
if (arch.equals("i386") || arch.equals("i586") || arch.equals("i686") || arch.equals("x86")) return ARCH.X86;
|
||||
if (arch.startsWith("armv8") || arch.startsWith("aarch64")) return ARCH.ARM64;
|
||||
if (arch.startsWith("arm") || arch.startsWith("aarch32")) return ARCH.ARM32;
|
||||
throw new InternalError(String.format("Unsupported arch '%s'", arch));
|
||||
|
|
|
@ -257,7 +257,6 @@ public static JavaVersion getByPath(Path jvmDir) {
|
|||
arch = JVMHelper.getArch(archProperty);
|
||||
}
|
||||
} catch (Throwable ignored) {
|
||||
arch = null;
|
||||
}
|
||||
String modulesProperty = getProperty(properties, "MODULES");
|
||||
if(modulesProperty != null) {
|
||||
|
|
Loading…
Reference in a new issue