We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77aa35a commit 7e1ad02Copy full SHA for 7e1ad02
.github/workflows/install-vs-components.py
@@ -21,11 +21,11 @@
21
text=True,
22
shell=True,
23
).strip()
24
-components_to_add = ["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL"] + (
25
- ["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64"]
26
- * (platform.machine() == "ARM64")
27
-)
28
-
+components_to_add = [
+ "Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64"
+ if platform.machine() == "ARM64"
+ else "Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL"
+]
29
args = (
30
"vs_installer.exe",
31
"modify",
0 commit comments