rstudio / packrat

Packrat is a dependency management system for R
http://rstudio.github.io/packrat/
401 stars 89 forks source link

bundle() should have option to omit cran packages #156

Open hadley opened 9 years ago

hadley commented 9 years ago

This would be useful if you're sending a bundle to a remote vm for execution in a container. Chances are the remote container will have a faster way of installing the packages from CRAN, and they don't need to be included in the bundle (reducing upload time)

kevinushey commented 9 years ago

@hadley this commit should do what you want (use packrat::bundle(..., omit.cran.src = TRUE))

hadley commented 9 years ago

Now can we make that default? ;)