Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# pak (development version)

* Setting `use_bioconductor = FALSE` (i.e. the `PKG_USE_BIOCONDUCTOR`
env var, or the `pkg.use_bioconductor` option) now truly prevents
any network contact with Bioconductor.

# pak 0.9.2

* No user visible changes.
Expand Down
2 changes: 1 addition & 1 deletion src/library/pkgcache/R/metadata-cache.R
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ extract_revdeps <- function(pkgs, packages, dependencies, recursive) {
cmc__get_repos <- function(repos, bioc, cran_mirror, r_version, auth = TRUE) {
repos[["CRAN"]] <- cran_mirror
repos <- unlist(repos)
bioc_names <- bioconductor$get_repos()
bioc_names <- if (bioc) bioconductor$get_repos() else character(0L)
res <- data_frame(
name = names(repos),
url = unname(repos),
Expand Down
Loading