Skip to content

Commit

Permalink
Merge pull request #295 from aleksei-burlakov/enable-colocation-linking
Browse files Browse the repository at this point in the history
Fix: enable colocation linking
  • Loading branch information
aleksei-burlakov authored Feb 3, 2025
2 parents d7058a8 + 0bf3429 commit a996420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hawk/app/models/colocation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ def shell_syntax
end
else
collapsed.each do |set2|
cmd.push " ( " unless set2[:sequential]
cmd.push " ( " if set2[:sequential] == false or set2[:sequential] == "false"
set2[:resources].reverse_each do |r|
cmd.push r + (set2[:action].blank? ? "" : ":#{set2[:action]}")
end
cmd.push " )" unless set2[:sequential]
cmd.push " )" if set2[:sequential] == false or set2[:sequential] == "false"
end
end

Expand Down

0 comments on commit a996420

Please sign in to comment.