Outdated targets will be rebuilt in the next
make()
. outdated()
does not show dynamic sub-targets.
Arguments
- ...
Arguments to
make()
, such asplan
andtargets
andenvir
.- make_imports
Logical, whether to make the imports first. Set to
FALSE
to save some time and risk obsolete output.- do_prework
Whether to do the
prework
normally supplied tomake()
.- config
Deprecated (2019-12-21). A configured workflow from
drake_config()
.
Examples
if (FALSE) { # \dontrun{
isolate_example("Quarantine side effects.", {
if (suppressWarnings(require("knitr"))) {
load_mtcars_example() # Get the code with drake_example("mtcars").
# Recopute the config list early and often to have the
# most current information. Do not modify the config list by hand.
outdated(my_plan) # Which targets are out of date?
make(my_plan) # Run the projects, build the targets.
# Now, everything should be up to date (no targets listed).
outdated(my_plan)
}
})
} # }