Method: BigKeeper::GitflowOperator#verify_git_flow_command

Defined in:
lib/big_keeper/util/gitflow_operator.rb

#verify_git_flow_commandObject



13
14
15
16
17
18
19
20
21
# File 'lib/big_keeper/util/gitflow_operator.rb', line 13

def verify_git_flow_command
  has_git_flow_command = false
  IO.popen('command -v git-flow') do |io|
    io.each do |line|
      has_git_flow_command = true
    end
  end
  has_git_flow_command
end