Skip to content

Commit 391e958

Browse files
committed
Try just ARM just to see
1 parent f525b4b commit 391e958

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/install-vs-components.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@
2222
shell=True,
2323
).strip()
2424
components_to_add = ["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL"] + (
25-
["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64"]
25+
[
26+
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM",
27+
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64",
28+
]
2629
if platform.machine() == "ARM64"
2730
else []
2831
)
29-
3032
args = (
3133
"vs_installer.exe",
3234
"modify",

0 commit comments

Comments
 (0)