kou commented on PR #47827:
URL: https://github.com/apache/arrow/pull/47827#issuecomment-3414563986
Does this work?
```diff
diff --git a/dev/tasks/macros.jinja b/dev/tasks/macros.jinja
index ddcb0d554e..76c67d1de0 100644
--- a/dev/tasks/macros.jinja
+++ b/dev/tasks/macros.jinja
@@ -286,7 +286,7 @@ env:
run: |
profile_path <- file.path(getwd(), ".Rprofile")
repo <- paste0("file://", getwd(), "/repo")
- str <- paste0("options(arrow.repo = '", repo, "' )")
+ str <- paste0("options(arrow.repo = '", repo, "/' )")
print(str)
write(str, file = profile_path, append = TRUE)
str <- paste0("options(arrow.dev_repo = '", repo, "' )")
```
`arrow.dev_repo` is also used
https://github.com/apache/arrow/blob/7a38744e979def14885c9ced423771af0916090d/r/R/install-arrow.R#L109
. If we change the default value of `arrow.dev_repo`, we may need to change
more code.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]