Fixed type conversion error

I encountered this when using jruby and passing an illegal option.
This commit is contained in:
Colin Dean 2011-09-30 14:01:07 -03:00 committed by Chris Eppstein
parent 067fb963df
commit 656f12a4ab

View File

@ -36,5 +36,5 @@ if ARGV.delete("--profile")
printer.print(STDERR, 0)
exit exit_code
else
exit runner.call
exit runner.call || 0
end