Method: Nbuild::MsiExecCmd#execute_internal

Defined in:
lib/nbuild/msi_exec_cmd.rb

#execute_internalObject



19
20
21
22
23
24
25
# File 'lib/nbuild/msi_exec_cmd.rb', line 19

def execute_internal
  the_command = self.command
  puts "executing \"#{the_command}\""
  process = Process.create(:command_line => the_command)
  puts "waiting for pid #{process.process_id}"
  Process.waitpid process.process_id
end