Skip to content

Commit

Permalink
avoid prompting for installation of BiocManager (#1754)
Browse files Browse the repository at this point in the history
kevinushey committed Nov 13, 2023
1 parent 70ba9e2 commit e2708df
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# renv (development version)

* Fixed an issue where `renv` would try to prompt for the installation of
`BiocManager` when activating a project using Bioconductor. (#1754)

* Fixed an issue where directories containing a large number of files could
cause `renv` to fail to activate a project. (#1733)

2 changes: 1 addition & 1 deletion R/bioconductor.R
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ renv_bioconductor_init_biocmanager <- function(library = NULL) {
return(TRUE)

ensure_directory(library)
install("BiocManager", library = library)
install("BiocManager", library = library, prompt = FALSE)
TRUE

}

0 comments on commit e2708df

Please sign in to comment.