Commit 66349bce authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

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
  ```
parent 089bb6ac
#! /usr/bin/env ruby
system "rake", *ARGV
exec "rake", *ARGV
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment