1
0
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:
Pete Davison 2023-12-30 16:45:09 +00:00
parent 1f3fca50b3
commit 98ea907284

View File

@ -20,6 +20,7 @@ func (d *Dep) DeepCopy() *Dep {
return &Dep{
Task: d.Task,
Vars: d.Vars.DeepCopy(),
Silent: d.Silent,
}
}