5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 05:36:22 +00:00

fixup! fixup! feat: usar un grafo dirigido para ordenar las dependencias #10464

This commit is contained in:
f 2023-03-17 21:32:05 -03:00
parent 4528da5bcb
commit 5440ecc2c2

View file

@ -8,7 +8,7 @@ class Site
included do
def deployment_graph
@deployment_graph ||= RGL::AdjacencyGraph.new.tap do |graph|
@deployment_graph ||= RGL::DirectedAdjacencyGraph.new.tap do |graph|
deploys.each do |deploy|
graph.add_vertex deploy
end