Module: FileUtils

Defined in:
lib/outpace_cli.rb

Instance Method Summary collapse

Instance Method Details

#sh(command) ⇒ Object



5
6
7
8
# File 'lib/outpace_cli.rb', line 5

def sh(command)
  $stderr.puts "Executing #{command}"
  system(command) or raise "Command failed: #{command}"
end