tdenniston / bish

Bish is a language that compiles to Bash. It's designed to give shell scripting a more comfortable and modern feel.
MIT License
1.48k stars 36 forks source link

'bish -r' should exit with the return code of the script. #39

Closed tdenniston closed 9 years ago

tdenniston commented 9 years ago

If you have the bish script test.bish:

assert(false);

And run it with:

bish -r test.bish

The exit code is 0 when it should be 1.