module DidGood

Constants

DEFAULT_KERNELLIB_URL
DGD_BUILD_COMMAND
GENERATED_ROOT
KERNEL_PATHS
VERSION

Public Class Methods

system_call(cmd) click to toggle source
# File lib/didgood.rb, line 17
def self.system_call(cmd)
    puts "Running command: #{cmd.inspect}..."
    system(cmd, out: $stdout, err: :out)
    unless $?.success?
        raise "Error running command: #{cmd.inspect}!"
    end
end