Info
Problem / Steps to reproduce
Envvar ($ABC) defined in task (task1) is lost when included as a sub-task of another task (task2)
~ mani.yaml ~
projects:
dummy:
path: .
tasks:
task1:
cmd: echo $ABC
env:
ABC: def
task2:
commands:
- task: task1
mani run task1 --all ## output "def"
mani run task2 --all ## output ""
Info
OS
Shell
Problem / Steps to reproduce
Envvar ($ABC) defined in task (task1) is lost when included as a sub-task of another task (task2)