Closed yjukaku closed 5 years ago
Use exit(1) instead of raise when the app responds with an error. We want this because the latter causes bundler to think that there's a bug in the derailed command, and you get the error message indicated in #112.
exit(1)
raise
derailed
Closes #112.
Thanks!
Use
exit(1)
instead ofraise
when the app responds with an error. We want this because the latter causes bundler to think that there's a bug in thederailed
command, and you get the error message indicated in #112.Closes #112.