This is an automated email from the ASF dual-hosted git repository.
paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git
The following commit(s) were added to refs/heads/main by this push:
new 67715260 fix(r): Ensure that `python` is used on Windows when running
bootstrap.R (#792)
67715260 is described below
commit 677152604988e13fc8a000413e2f0c1f158ad65b
Author: Dewey Dunnington <[email protected]>
AuthorDate: Wed Jun 25 11:00:01 2025 -0500
fix(r): Ensure that `python` is used on Windows when running bootstrap.R
(#792)
Uncovered whilst attempting verification on Windows!
---
r/bootstrap.R | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/r/bootstrap.R b/r/bootstrap.R
index d8ad0831..c285f487 100644
--- a/r/bootstrap.R
+++ b/r/bootstrap.R
@@ -43,7 +43,8 @@ run_bundler <- function() {
"--with-flatcc"
)
command <- sprintf(
- "python3 ../ci/scripts/bundle.py %s",
+ "%s ../ci/scripts/bundle.py %s",
+ python(),
paste(args, collapse = " ")
)