Create a bootstrap library

conan_bootstrap(path, upgrade = FALSE)

Arguments

path

Path to create library

upgrade

Logical, indicating if the bootstrap packages should be upgraded if newer versions are available.

Value

Invisibly, path, but primarily called for its side effects, which is to create or update the library at path

Examples

if (interactive()) {
  path <- tempfile()
  conan::conan_bootstrap(path)
  dir(path)
}