List the targets that completed in the current or
previous call to make()
.
drake_done(cache = drake::drake_cache(path = path), path = NULL)
cache | drake cache. See |
---|---|
path | Path to a |
A character vector of target names.
if (FALSE) { isolate_example("contain side effects", { plan <- drake_plan(x = 1, y = x) make(plan) drake_done() }) }