The new default behavior of install_github() doesn't build the PDFs from Rnw files in the vignettes directory.
Setting local=FALSE fails, presumably because local slipped out of ... somewhere between install_github() and install():
> install_github('devtools',local=FALSE)
Installing github repo(s) devtools/master from hadley
Downloading devtools.zip from https://github.com/hadley/devtools/archive/master.zip
Installing package from /var/folders/qm/fvhzvrvx1qs1cr8c0pkk5f9m0000gn/T//RtmpRMuUAQ/devtools.zip
Error in install(pkg_path, local = TRUE, quiet = quiet, ...) :
formal argument "local" matched by multiple actual arguments
Downloading from github and using install() directly with local=FALSE does work.
The new default behavior of install_github() doesn't build the PDFs from Rnw files in the vignettes directory.
Setting
local=FALSEfails, presumably becauselocalslipped out of...somewhere betweeninstall_github()andinstall():Downloading from github and using
install()directly withlocal=FALSEdoes work.