Commit 81fa3ac
Changed files (1)
spec
support
spec/support/shell_helper.rb
@@ -6,7 +6,7 @@ RSpec.configure do |config|
config.include(Module.new do
def execute_shell(command)
puts `#{command}`
- raise "command failed: #{command}" unless $CHILD_STATUS.success?
+ raise "command failed (#{$CHILD_STATUS}): #{command}" unless $CHILD_STATUS.success?
end
end)
end