module Pfm::Helpers

def system_command(*command_args)

Parameters:
  • command_args (String) -- the system command to run
def system_command(*command_args)
  cmd = Mixlib::ShellOut.new(*command_args)
  cmd.run_command
  err(cmd.stderr)
  msg(cmd.stdout)
  cmd
end