mburns/paramount

View on GitHub
lib/rake_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'English'

ROOT_DIR = File.expand_path('../../', __FILE__)

def abort_on_failure(command, message = '')
  `#{command}`
  abort(message) unless $CHILD_STATUS.exitstatus.zero?
end