Add in build_vignettes(, upgrade = FALSE)
argument
#1139
Closed
Milestone
Comments
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I run
build_vignettes()
in my package, the function tries to install some packages. But all the mentioned packages I already have, in the same path, but not in the most recent version.The argument
dependencies = "VignetteBuilder
argument is passed down,build_vignette() > install_deps() > dev_package_deps()
, the last check for updates.New versions are always installed. But, why not add a argument in
build_vignettes()
to update or not packages,upgrade = FALSE
, that is passed toupdate()
insideinstall_deps()
? With this, only non installed packages will be installed, but not those already installed.Thanks in advance.
The text was updated successfully, but these errors were encountered: