mirror of
https://github.com/go-task/task.git
synced 2025-04-02 22:15:30 +02:00
fix: include with dynamic vars (#2092)
This commit is contained in:
parent
a266fba93e
commit
c23c46e326
13
task_test.go
13
task_test.go
@ -2477,6 +2477,19 @@ VAR_2 is included-default-var2
|
||||
assert.Equal(t, strings.TrimSpace(buff.String()), expectedOutputOrder)
|
||||
}
|
||||
|
||||
func TestIncludeWithVarsInInclude(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
const dir = "testdata/include_with_vars_inside_include"
|
||||
var buff bytes.Buffer
|
||||
e := task.Executor{
|
||||
Dir: dir,
|
||||
Stdout: &buff,
|
||||
Stderr: &buff,
|
||||
}
|
||||
require.NoError(t, e.Setup())
|
||||
}
|
||||
|
||||
func TestIncludedVarsMultiLevel(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
|
@ -105,7 +105,7 @@ func (vars *Vars) ToCacheMap() (m map[string]any) {
|
||||
if v.Sh != nil && *v.Sh != "" {
|
||||
// Dynamic variable is not yet resolved; trigger
|
||||
// <no value> to be used in templates.
|
||||
return nil
|
||||
continue
|
||||
}
|
||||
if v.Live != nil {
|
||||
m[k] = v.Live
|
||||
|
10
testdata/include_with_vars_inside_include/Taskfile.yml
vendored
Normal file
10
testdata/include_with_vars_inside_include/Taskfile.yml
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
version: "3"
|
||||
|
||||
vars:
|
||||
INCLUDE: include
|
||||
FOO:
|
||||
sh : echo bar
|
||||
|
||||
includes:
|
||||
included1:
|
||||
taskfile: '{{.INCLUDE}}/Taskfile.include.yml'
|
1
testdata/include_with_vars_inside_include/include/Taskfile.include.yml
vendored
Normal file
1
testdata/include_with_vars_inside_include/include/Taskfile.include.yml
vendored
Normal file
@ -0,0 +1 @@
|
||||
version: "3"
|
Loading…
x
Reference in New Issue
Block a user