From 5b9f59859932b37ad8fd9ad03e8321f5feeeb277 Mon Sep 17 00:00:00 2001
From: David Li
Date: Tue, 3 Feb 2026 16:04:13 +0900
Subject: [PATCH] fix: invoke bash.exe explicitly on Windows
---
adbc_drivers_dev/make.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/adbc_drivers_dev/make.py b/adbc_drivers_dev/make.py
index 8b27cd7..5e269c1 100644
--- a/adbc_drivers_dev/make.py
+++ b/adbc_drivers_dev/make.py
@@ -448,11 +448,13 @@ def build_script(
if platform.system() == "Darwin":
env["MACOSX_DEPLOYMENT_TARGET"] = "11.0"
+ # for Windows
+ args = ["bash", "./ci/scripts/build.sh", *args]
maybe_build_docker(
repo_root=repo_root,
driver_root=driver_root,
env=env,
- args=["./ci/scripts/build.sh", *args],
+ args=args,
ci=ci,
)