Skip to content

Commit d787085

Browse files
authored
fix: invoke bash.exe explicitly on Windows (#76)
1 parent d62cb98 commit d787085

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adbc_drivers_dev/make.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,11 +448,13 @@ def build_script(
448448
if platform.system() == "Darwin":
449449
env["MACOSX_DEPLOYMENT_TARGET"] = "11.0"
450450

451+
# for Windows
452+
args = ["bash", "./ci/scripts/build.sh", *args]
451453
maybe_build_docker(
452454
repo_root=repo_root,
453455
driver_root=driver_root,
454456
env=env,
455-
args=["./ci/scripts/build.sh", *args],
457+
args=args,
456458
ci=ci,
457459
)
458460

0 commit comments

Comments
 (0)