Skip to content

Commit

Permalink
Merge pull request #252 from Itxaka/consider_provides_names_on_install
Browse files Browse the repository at this point in the history
installer: Take into consideration provides names
  • Loading branch information
mudler authored Sep 6, 2021
2 parents 1786908 + aba89db commit 0bd373b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/installer/installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,11 @@ func (l *LuetInstaller) Install(cp pkg.Packages, s *System) error {
if m.Package.GetName() == p.GetName() {
found = true
}
for _, pack := range m.Package.GetProvides() {
if pack.GetName() == p.GetName() {
found = true
}
}
}

if !found {
Expand Down

0 comments on commit 0bd373b

Please sign in to comment.