Skip to content

Commit

Permalink
Merge pull request #141 from WillAbides/systemfix
Browse files Browse the repository at this point in the history
fix systems
  • Loading branch information
WillAbides authored May 9, 2023
2 parents 721323a + 032d1c9 commit a5fed75
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 a5fed75

Please sign in to comment.