Skip to content

Commit

Permalink
fix systems
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAbides committed May 9, 2023
1 parent 721323a commit 032d1c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/bindown/dependency.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func (d *Dependency) applyTemplate(templates map[string]*Dependency, depth int)
if d.RequiredVars != nil {
newDL.RequiredVars = append(newDL.RequiredVars, d.RequiredVars...)
}
newDL.Systems = slices.Clone(d.Systems)
newDL.Systems = slices.Clone(newDL.Systems)
newDL.addOverrides(d.Overrides)
*d = *newDL
return nil
Expand Down

0 comments on commit 032d1c9

Please sign in to comment.