We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d787085 commit 4b44093Copy full SHA for 4b44093
adbc_drivers_dev/make.py
@@ -448,8 +448,11 @@ def build_script(
448
if platform.system() == "Darwin":
449
env["MACOSX_DEPLOYMENT_TARGET"] = "11.0"
450
451
- # for Windows
452
- args = ["bash", "./ci/scripts/build.sh", *args]
+ args = ["./ci/scripts/build.sh", *args]
+ if ci and PLATFORM == "windows":
453
+ # Force use of Git Bash on GitHub Actions
454
+ args = [r"C:\Program Files\Git\bin\bash.EXE", *args]
455
+
456
maybe_build_docker(
457
repo_root=repo_root,
458
driver_root=driver_root,
0 commit comments