mirror of
https://github.com/go-task/task.git
synced 2025-01-08 04:04:08 +02:00
5eb1a1f7f5
- Disallow recursive Taskfile including (i.e. included Taskfile including other Taskfiles) - Write test for included a file instead of a directory
17 lines
241 B
YAML
17 lines
241 B
YAML
version: '2'
|
|
|
|
includes:
|
|
included: ./included
|
|
included_taskfile: ./Taskfile2.yml
|
|
|
|
tasks:
|
|
default:
|
|
cmds:
|
|
- task: gen
|
|
- task: included:gen
|
|
- task: included_taskfile:gen
|
|
|
|
gen:
|
|
cmds:
|
|
- echo main > main.txt
|