From 8e85f991eaa418e58ceaa19281419429028c1f8e Mon Sep 17 00:00:00 2001 From: Korijn van Golen Date: Mon, 11 Oct 2021 14:16:59 +0200 Subject: [PATCH] fix choices for cli --- download-wgpu-native.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download-wgpu-native.py b/download-wgpu-native.py index f5c5805b..318fed26 100644 --- a/download-wgpu-native.py +++ b/download-wgpu-native.py @@ -153,7 +153,7 @@ def main(version, os_string, arch, upstream): "--arch", help=f"Architecture to download for (default: {arch_string})", default=arch_string, - choices=("32", "64"), + choices=("x86_64", "i686", "arm64"), ) upstream = "gfx-rs/wgpu-native" parser.add_argument(