Skip to content

Commit

Permalink
Always print backtrace on error inside fork (#5431)
Browse files Browse the repository at this point in the history
  • Loading branch information
RX14 committed Dec 22, 2017
1 parent 4932360 commit 3a5fde0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process.cr
Expand Up @@ -104,7 +104,7 @@ class Process
yield
LibC._exit 0
rescue ex
ex.inspect STDERR
ex.inspect_with_backtrace STDERR
STDERR.flush
LibC._exit 1
ensure
Expand Down

0 comments on commit 3a5fde0

Please sign in to comment.