Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

install_github("repository", build_vignettes = TRUE) #1896

Closed
lindbrook opened this issue Oct 19, 2018 · 4 comments
Closed

install_github("repository", build_vignettes = TRUE) #1896

lindbrook opened this issue Oct 19, 2018 · 4 comments

Comments

@lindbrook
Copy link
Contributor

With devtools 2.0.0, devtools::install_github("repository", build_vignettes = TRUE) no longer builds the vignettes.

devtools::install("repository", build_vignettes = TRUE) does build the vignettes.

I've tried using remove.packages("package") first and by using remotes::install_github("repository", build_vignettes = TRUE). Same results.

Has the syntax changed?

After downgrading to devtools 1.13.6, devtools::install_github("repository", build_vignettes = TRUE) does builds the vignettes.

@jimhester
Copy link
Member

Yes, remove --no-build-vignettes from the build_opts to build the vignettes. e.g.

devtools::install_github("foo/bar", build_opts = c("--no-resave-data", "--no-manual"))

@DanielEWeeks
Copy link

For my vignette to build, I had to add the 'build_vignettes = TRUE' option

install_github("foo/bar", build_opts = c("--no-resave-data", "--no-manual"), build_vignettes = TRUE)

@ferroao
Copy link

ferroao commented Sep 17, 2019

the build_ops works in windows, and the build_vignettes works in linux.

@lock
Copy link

lock bot commented Mar 17, 2020

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/

@lock lock bot locked and limited conversation to collaborators Mar 17, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants