build_win: fix wrong env var bug introduced in bfce5b94

In bfce5b94 by accident I removed `TARGET_ARCH` env variable to `VS_PLATFORM` in `build-all-win.py`, while it wasn't related to build-deps really - this was the variable coming from CI matrix.
This commit is contained in:
Andrej730
2026-09-14 16:30:14 +05:00
parent 1cadd711f1
commit 34e01b3cf8
+1 -1
View File
@@ -16,7 +16,7 @@ from zipfile import ZipFile
def is_arm64() -> bool:
arch = os.environ.get("VS_PLATFORM", "").lower()
arch = os.environ.get("TARGET_ARCH", "").lower()
if arch in ("arm64", "aarch64"):
return True
if arch in ("x64", "amd64", "x86_64"):