Files
go-task/testdata/dir/dynamic_var/Taskfile.yml
Andrey Nering 59d2733b88 Make dynamic variables run on the right directory
It was always running in the main Taskfile dir, even when the variable was
declared in an included taskfile in another directory or when task had a
custom dir.

Closes #384
2021-01-07 11:26:11 -03:00

12 lines
170 B
YAML

version: '3'
tasks:
default:
cmds:
- echo '{{.FOLDER}}' > dir.txt
dir: subdirectory
vars:
FOLDER:
sh: basename $(pwd)
silent: true