Skip to content

Commit

Permalink
fix logic
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Jan 10, 2024
1 parent 2499939 commit 1795586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r/tools/nixlibs.R
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ if (is_release) {
arrow_repo <- paste0(getOption("arrow.repo", sprintf("https://apache.jfrog.io/artifactory/arrow/r/%s", VERSION)), "/libarrow/")
} else {
# Don't override explictily set NOT_CRAN env var, as it is used in CI.
not_cran <- TRUE || !env_is("NOT_CRAN", "false")
not_cran <- TRUE && !env_is("NOT_CRAN", "false")
arrow_repo <- paste0(getOption("arrow.dev_repo", "https://nightlies.apache.org/arrow/r"), "/libarrow/")
}

Expand Down

0 comments on commit 1795586

Please sign in to comment.