Tags: zeehio/renv
Tags
use cat for bootstrap messages (rstudio#1299) * use cat for bootstrap messages * merge defer + exit handlers * move 'renv.bootstrap.quiet' to scope
Eliminate use of %||% with environments (rstudio#1295) This is the first step in moving `%||%` towards an implementation that's consistent with other packages, i.e. what `%??%` is currently. After a few abortive attempts, I figured out the best way to do this is to slowly move usage of `%||%` to `%??%`, since that makes it stricter. This first PR eliminates the use of `%||%` with environments by using argument defaults more in `scope.R`, and using `%??%` for environment caching elsewhere.