[R-pkg-devel] vignette problems: invisible
Troels Ring
tr|ng @end|ng |rom gvdnet@dk
Fri Feb 1 19:48:35 CET 2019
Thanks a lot - that solved the issue!
Best wishes
Troels
-----Oprindelig meddelelse-----
Fra: Duncan Murdoch <murdoch.duncan using gmail.com>
Sendt: 1. februar 2019 15:42
Til: Troels Ring <tring using gvdnet.dk>; package-develop <r-package-devel using r-project.org>
Emne: Re: [R-pkg-devel] vignette problems: invisible
On 01/02/2019 9:23 a.m., Duncan Murdoch wrote:
> On 01/02/2019 8:22 a.m., Troels Ring wrote:
>> devtools::install_github("troelsring/ABCharge",force=TRUE,build_vigne
>> ttes =
>> TRUE)
>
> That looks like an issue with install_github. The normal way to
> install a package is to build the tarball, then install from that.
> When I do that with your package, I get the vignette.
The issue is that by default, install_github() passes the "--no-build-vignettes" option to R CMD build. Using this command line does a full install:
devtools::install_github("troelsring/ABCharge",force=TRUE,
build=TRUE, build_opts=NULL)
Duncan Murdoch
More information about the R-package-devel
mailing list