Fix #873: On 64 bit x86 machines, os.arch may be x86_64

This commit is contained in:
Glavo 2021-05-17 04:11:10 +08:00 committed by Yuhui Huang
parent cecabe5bc4
commit 607248e8b3

View File

@ -77,6 +77,7 @@ public class SelfDependencyPatcher {
case "amd64":
case "x64":
case "x86-64":
case "x86_64":
break;
default:
throw new IncompatibleVersionException();