Skip to content

Commit f525b4b

Browse files
committed
Try always install non ARM64 ATL
1 parent b89fcd3 commit f525b4b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@
2121
text=True,
2222
shell=True,
2323
).strip()
24-
components_to_add = (
24+
components_to_add = ["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL"] + (
2525
["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64"]
2626
if platform.machine() == "ARM64"
27-
else ["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL"]
27+
else []
2828
)
29+
2930
args = (
3031
"vs_installer.exe",
3132
"modify",

0 commit comments

Comments
 (0)