- def self.svn_cat(url)
- unless @svn_responses[url]
- status, stdout, stderr = output_of_command("svn cat #{url}", {})
- handle_command_failures(status, "STDOUT: #{stdout}\nSTDERR: #{stderr}", :output_on_failure => true)
+ def svn_cat(url)
+ unless @svn_responses[url]
+ result = shell_out!("svn", "cat", url)