module FileUtils

def create_shell_runner(cmd) # :nodoc:

:nodoc:
def create_shell_runner(cmd) # :nodoc:
  show_command = sh_show_command cmd
  lambda do |ok, status|
    ok or
      fail "Command failed with status (#{status.exitstatus}): " +
      "[#{show_command}]"
  end
end