Learn R Programming

drake (version 5.0.0)

default_Makefile_args: Return the default value of the args argument to make().

Description

For make(..., parallelism = "Makefile"), this function configures the default arguments to system2(). It is an internal function, and most users do not need to worry about it.

Usage

default_Makefile_args(jobs, verbose)

Arguments

jobs

number of jobs

verbose

logical, whether to be verbose

Value

args for system2(command, args)

Examples

Run this code
# NOT RUN {
default_Makefile_args(jobs = 2, verbose = FALSE)
default_Makefile_args(jobs = 4, verbose = TRUE)
# }

Run the code above in your browser using DataLab