Skip to main content

exitOnError

Type: boolean
Default: true

Whether to exit the process if a task fails. If true, the process will exit with an error code if a task fails.

Usage

{
title: 'foo',
exitOnError: true,
tasks: [
{
title: 'foo',
actions: [
{
type: 'path:ensure',
target: 'path/to/directory'
}
]
}
]
}