Use `exec` instead of `system` in `minirake` for exit status
#### Before this patch: ```console $ ./minirake --foo; echo $? invalid option: --foo 0 ``` #### After this patch: ```console $ ./minirake --foo; echo $? invalid option: --foo 1 ```
Showing
Please register or sign in to comment