Skip to content

Commit c90279e

Browse files
authored
fix choices for cli (#200)
1 parent 76a4184 commit c90279e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

download-wgpu-native.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def main(version, os_string, arch, upstream):
162162
"--arch",
163163
help=f"Architecture to download for (default: {arch_string})",
164164
default=arch_string,
165-
choices=("32", "64"),
165+
choices=("x86_64", "i686", "arm64"),
166166
)
167167
upstream = "gfx-rs/wgpu-native"
168168
parser.add_argument(

0 commit comments

Comments
 (0)