# File lib/capistrano/configuration/actions/invocation.rb, line 283 def continue_execution(tree) if tree.branches.length == 1 continue_execution_for_branch(tree.branches.first) else tree.each { |branch| branch.skip! unless continue_execution_for_branch(branch) } tree.any? { |branch| !branch.skip? } end end