Skip to content

Commit

Permalink
Fix default value for upgrade
Browse files Browse the repository at this point in the history
in functions install_deps and install_dev_deps
  • Loading branch information
kiendang authored and jimhester committed Nov 19, 2018
1 parent 9780c9f commit 55f982c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/install.R
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ install_deps <- function(pkg = ".",
dependencies = NA,
repos = getOption("repos"),
type = getOption("pkgType"),
upgrade = c("ask", "always", "never"),
upgrade = c("default", "ask", "always", "never"),
quiet = FALSE,
build = TRUE,
build_opts = c("--no-resave-data", "--no-manual", " --no-build-vignettes"),
Expand All @@ -135,7 +135,7 @@ install_dev_deps <- function(pkg = ".",
dependencies = TRUE,
repos = getOption("repos"),
type = getOption("pkgType"),
upgrade = c("ask", "always", "never"),
upgrade = c("default", "ask", "always", "never"),
quiet = FALSE,
build = TRUE,
build_opts = c("--no-resave-data", "--no-manual", " --no-build-vignettes"),
Expand Down

0 comments on commit 55f982c

Please sign in to comment.