build-deps.py: add -y to skip initial confirmation prompt

This commit is contained in:
Andrej730
2026-09-14 14:48:51 +05:00
parent 73d24a50d0
commit a0e0516795
3 changed files with 17 additions and 19 deletions
+1 -6
View File
@@ -217,12 +217,7 @@ def build() -> None:
for python_version in PYTHON_VERSIONS:
os.environ["PYTHON_VERSION"] = python_version
print(f"Building for Python {python_version}...")
subprocess.run(
[sys.executable, str(REPO_WIN / "build-deps.py"), build_generator(), "Release"],
check=True,
text=True,
input="y\n",
)
run([sys.executable, str(REPO_WIN / "build-deps.py"), build_generator(), "Release", "-y"])
OLD_ADD_COMMIT_SHA = set_env("ADD_COMMIT_SHA", "ON")
run(
[