-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
I noticed that when defining a task:
// this is a kiss example of how tasks work with shell
const simpleTask = task({
output: '*.txt', // checks if output file matches the specified pattern
params: 'test_file.txt', //defines parameters to be passed to the
// task function
name: 'This is the task name' //defines the name of the task
}, function(resolvedProps) {
const params = resolvedProps.params
return 'touch ' + params
}
)
It seems that only one output file can be matched for a given extension?
output: '*.txt', // checks if output file matches the specified pattern
Is there a way to match multiple files of the same extension?
tiagofilipe12