Skip to content

Commit b000af1

Browse files
authored
GH-47821: [CI][Release][R] Fix test repository path in release (#47929)
### Rationale for this change `r/tools/nixlibs.R` assumes that `arrow.repo` ends with `/` but `dev/tasks/macros.jinja` uses `arrow.repo` without the end `/`. ### What changes are included in this PR? Add missing the end `/` and `/libarrow` sub directory. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * GitHub Issue: #47821 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent e044907 commit b000af1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tasks/macros.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ env:
286286
run: |
287287
profile_path <- file.path(getwd(), ".Rprofile")
288288
repo <- paste0("file://", getwd(), "/repo")
289-
str <- paste0("options(arrow.repo = '", repo, "' )")
289+
str <- paste0("options(arrow.repo = '", repo, "/libarrow/' )")
290290
print(str)
291291
write(str, file = profile_path, append = TRUE)
292292
str <- paste0("options(arrow.dev_repo = '", repo, "' )")

0 commit comments

Comments
 (0)