Method: CodeRunner::RepositoryManager.try_system

Defined in:
lib/coderunner/repository_manager.rb

.try_system(str) ⇒ Object



142
143
144
145
# File 'lib/coderunner/repository_manager.rb', line 142

def try_system(str)
  puts str
  raise "Failed command: #{str}" unless system str
end