diff options
author | kitsunyan | 2018-03-23 20:58:36 +0000 |
---|---|---|
committer | kitsunyan | 2018-03-23 20:58:36 +0000 |
commit | 868fc202b7f10296203f05a1869dadd6ae181a37 (patch) | |
tree | b962129e07c694cc1a3516152e982aac509e42d6 /src/feature | |
parent | b755cb2ae068d349ae3a8a6bbce068e0d121713f (diff) |
Fix ignored packages/groups
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/syncinstall.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/syncinstall.nim b/src/feature/syncinstall.nim index d9762ed..4727f25 100644 --- a/src/feature/syncinstall.nim +++ b/src/feature/syncinstall.nim @@ -759,7 +759,7 @@ proc filterIgnoresAndConflicts(config: Config, pkgInfos: seq[PackageInfo], else: true)) - let nonConflicingPkgInfos = pkgInfos.foldl(block: + let nonConflicingPkgInfos = acceptedPkgInfos.foldl(block: let conflictsWith = lc[p | (p <- a, p.name != b.name and (lc[0 | (c <- b.conflicts, c.isProvidedBy(p.toPackageReference)), int].len > 0 or lc[0 | (c <- p.conflicts, c.isProvidedBy(b.toPackageReference)), int].len > 0)), |