drake (version 6.2.1)

make_with_config: Run make(), on an existing internal configuration list.

Description

Use drake_config() to create the config argument.

Usage

make_with_config(config = drake::read_drake_config())

Arguments

config

An input internal configuration list

Value

An output internal configuration list

See Also

make(), drake_config()

Examples

Run this code
# NOT RUN {
test_with_dir("Quarantine side effects.", {
load_mtcars_example() # Get the code with drake_example("mtcars").
# The following lines are the same as make(my_plan)
config <- drake_config(my_plan) # Create the internal config list.
make_with_config(config = config) # Run the project, build the targets.
})
# }

Run the code above in your browser using DataLab