Skip to content

Commit d2fcbe5

Browse files
committed
Problem: failing to build packages with a lot of requirements
Solution: ensure we don't build dependencies that are contribs
1 parent 118e866 commit d2fcbe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exe/pgpm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ module Pgpm
113113
selected_pgdist.with_scope do
114114
pkgs = pkgs.flat_map do |pkg|
115115
[pkg, *pkg.requires]
116-
end
116+
end.reject(&:contrib?)
117117

118118
b = pkgs.reduce(nil) do |c, p|
119119
if p.broken?

0 commit comments

Comments
 (0)