lib/dply/command.rb in dply-0.3.8 vs lib/dply/command.rb in dply-0.3.9
- old
+ new
@@ -23,10 +23,10 @@
def assert_success(&block)
ret = yield
exitstatus = $?.exitstatus
if exitstatus != 0
- raise Error, "non zero exit for \"#{command_str}\""
+ raise Error, %(non zero exit for "#{command_str}")
end
ret
end
def command