Hello!
We ran into this issue where if we switched outputTo to terminal our included child Taskfile's commands were still being run with the parent's assigned prefix with in the child Taskfile's folder, ie:
Taskfile.yaml
...
includes:
childtasks:
taskfile: ./childtasks_folder/Taskfile.yaml
dir: ./childtasks_folder/
...
./childtasks_folder/Taskfile.yaml
...
tasks:
dotask:
cmds:
- go_nuts
...
Running with outputTo=terminal would run from ./childtasks/ correctly but include the prefix childtasks as given by the parent Taskfile.yaml resolving to childtasks:dotask rather than just dotask.
This problem does not exist with the default outputTo settings!