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
Here's one interpretation: deps = NA means (approximately) get run-time dependencies, and deps = T means get build-time dependencies. So it should be added only when deps = TRUE, but install_github() should probably use deps = T since you have to build the package.
I think the TRUE/FALSE/NA values aren't very intuitive. An alternative is to change dependencies to a string argument, and you could deprecate the TRUE/FALSE values.
For example, currently installing
Rcpp
fromGitHub
fails ifhighlight
is not available:gives me
Of course, the error is easy enough for the user to fix, but it would be nice if
devtools
could automatically grab the package from CRAN.The text was updated successfully, but these errors were encountered: