Merge pull request #3626 from glensc/patch-1

bin: do not overflow exit code
This commit is contained in:
Mitchell Hashimoto 2014-05-04 09:06:51 -07:00
commit 88da89ada2
1 changed files with 1 additions and 1 deletions

View File

@ -194,5 +194,5 @@ rescue Exception => e
end
exit e.status_code if e.respond_to?(:status_code)
exit 999 # An error occurred with no status code defined
exit 255 # An error occurred with no status code defined
end