You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Order brew bundle formulae via strongly connected components
Sorting installed formulae by dependency built the graph from runtime dependencies recorded in installed keg tabs, which can disagree with the current formulae and form a cycle the live graph does not have. On such a cycle sort! aborted the whole bundle run via odie.
Order with each_strongly_connected_component instead: it matches tsort dependency-first order for an acyclic graph but does not raise on a cycle. When a cycle exists, warn naming the full cyclic component and continue, rather than aborting.
0 commit comments