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
update_packages(force = TRUE) does not reinstall a package, which it should, if I understand the documentation correctly.
Force installation, even if the remote state has not changed since the previous install.
It seems to me that the force argument in update.package_deps() is not evalutated for packages where object$diff == CURRENT?
library(remotes)
update_packages("lookup", force=TRUE)
install_github("jimhester/lookup")
#> Using github PAT from envvar GITHUB_PAT#> Skipping install of 'lookup' from a github remote, the SHA1 (eba63db4) has not changed since last install.#> Use `force = TRUE` to force installation
the force argument doesn't really make sense for update_packages().
@jimhester I've found it quite useful (in theory at least) to reinstall a bunch of packages without having to know which remote (CRAN, GitHub, GitLab, ...) or repo ("is {lookup} from 'jimhester' or 'r-lib'?) they are from. Is there another way to do this easily?
update_packages(force = TRUE)
does not reinstall a package, which it should, if I understand the documentation correctly.It seems to me that the
force
argument inupdate.package_deps()
is not evalutated for packages whereobject$diff == CURRENT
?Created on 2020-07-15 by the reprex package (v0.3.0)
Session info
The text was updated successfully, but these errors were encountered: