Skip to content

Commit

Permalink
add default repository to install_required_packages() (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
zkamvar authored Oct 19, 2020
1 parent f53be37 commit 53e9913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/dependencies.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
install_required_packages <- function(lib = NULL, repos = getOption("repos")) {
install_required_packages <- function(lib = NULL, repos = getOption("repos", default = c(CRAN = "https://cran.rstudio.com/"))) {

if (is.null(lib)) {
lib <- .libPaths()
Expand Down

0 comments on commit 53e9913

Please sign in to comment.