Method: Gjp::KitRunner#run_executable

Defined in:
lib/gjp/kit_runner.rb

#run_executable(full_commandline) ⇒ Object

runs an external executable, returns true on success



31
32
33
34
35
# File 'lib/gjp/kit_runner.rb', line 31

def run_executable(full_commandline)
  log.debug "running #{full_commandline}"
  Process.wait(Process.spawn(full_commandline))
  $?.exitstatus == 0
end