mirror of
https://github.com/go-task/task.git
synced 2025-02-11 13:53:03 +02:00
fix: bug where silent value was not deep copied on dependencies
This commit is contained in:
parent
1f3fca50b3
commit
98ea907284
@ -18,8 +18,9 @@ func (d *Dep) DeepCopy() *Dep {
|
||||
return nil
|
||||
}
|
||||
return &Dep{
|
||||
Task: d.Task,
|
||||
Vars: d.Vars.DeepCopy(),
|
||||
Task: d.Task,
|
||||
Vars: d.Vars.DeepCopy(),
|
||||
Silent: d.Silent,
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user