drake_done {drake} | R Documentation |
List done targets.
Description
List the targets that completed in the current or
previous call to make()
.
Usage
drake_done(cache = drake::drake_cache(path = path), path = NULL)
Arguments
cache |
drake cache. See |
path |
Path to a |
Value
A character vector of target names.
See Also
drake_running()
, drake_failed()
, drake_cancelled()
,
drake_progress()
, make()
Examples
## Not run:
isolate_example("contain side effects", {
plan <- drake_plan(x = 1, y = x)
make(plan)
drake_done()
})
## End(Not run)
[Package drake version 7.13.10 Index]