1
1

Make update: Allow amd64 architecture

Apparently, the 64bit Intel architecture is presented differently
on Linux and Windows.

Allow both variants for the command line, so that semantically the
command line argument can be seen as a lower case platform.machine.

Pull Request #104878
This commit is contained in:
2023-02-17 14:35:53 +01:00
committed by Gitea
parent 6af531d552
commit df7977eaa2

View File

@@ -40,7 +40,7 @@ def parse_arguments():
parser.add_argument("--use-centos-libraries", action="store_true")
parser.add_argument("--use-linux-libraries", action="store_true")
parser.add_argument("--architecture", type=str, choices=("x86_64", "arm64",))
parser.add_argument("--architecture", type=str, choices=("x86_64", "amd64", "arm64",))
return parser.parse_args()