fix: bug where silent value was not deep copied on dependencies

This commit is contained in:
Pete Davison
2024-01-11 14:44:04 +00:00
parent 1f3fca50b3
commit 98ea907284
+3 -2
View File
@@ -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,
}
}