You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#' @param ... additional arguments passed to [utils::install.packages()].
I came across this message in my GHA logs:
Skipping install of 'ggplot2' from a cran remote, the SHA1 (3.5.1) has not changed since last install.
Use force = TRUE to force installation
And couldn't figure out where it's coming from ... what gets force= exactly?
I saw remotes::install_deps() referenced, but it doesn't have a force= argument, and ... points to install.packages(), which neither has a force= argument:
remotes/R/install.R
Line 173 in 5b7eb08
I came across this message in my GHA logs:
And couldn't figure out where it's coming from ... what gets
force=
exactly?I saw
remotes::install_deps()
referenced, but it doesn't have aforce=
argument, and...
points toinstall.packages()
, which neither has aforce=
argument:https://remotes.r-lib.org/reference/install_deps.html
Only plumbing through the code could I find out that it's the
update()
method that has theforce=
argument:remotes/R/install.R
Lines 200 to 211 in 5b7eb08
remotes/R/deps.R
Line 274 in 5b7eb08
Wouldn't it be better in
?install_deps
to point to the docs forupdate.package_deps()
instead?The text was updated successfully, but these errors were encountered: