Skip to content

Commit

Permalink
Merge pull request #552 from Morganamilo/fix#551
Browse files Browse the repository at this point in the history
Fix group installs for --nocombinedupgrade
  • Loading branch information
Morganamilo authored Jul 16, 2018
2 parents d6b8623 + f3635cd commit fdcc233
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions install.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ func install(parser *arguments) error {
if err == nil {
arguments.addTarget(_target)
} else {
_, err := syncDb.PkgCachebyGroup(target.Name)
if err == nil {
arguments.addTarget(_target)
continue
}

parser.addTarget(_target)
}
}
Expand Down

0 comments on commit fdcc233

Please sign in to comment.