mirror of
https://github.com/Jguer/yay
synced 2024-10-31 13:42:27 +00:00
Merge pull request #552 from Morganamilo/fix#551
Fix group installs for --nocombinedupgrade
This commit is contained in:
commit
fdcc233cbe
1 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue