diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-14 07:40:07 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-14 07:40:07 +0900 |
| commit | 94df66fb08c91135a4c37731fabf6f521a940bb0 (patch) | |
| tree | b2f6f3da657e6eda8f336ae33df15753c81f5217 | |
| parent | 2bd099c8426b82831daa788c86f96dee7d3774fb (diff) | |
| parent | 1b6f6413dbc4ec108c8bb54640cfad430c153806 (diff) | |
| download | mruby-94df66fb08c91135a4c37731fabf6f521a940bb0.tar.gz mruby-94df66fb08c91135a4c37731fabf6f521a940bb0.zip | |
Merge branch 'master' of github.com:mruby/mruby
| -rw-r--r-- | tasks/mruby_build_commands.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/mruby_build_commands.rake b/tasks/mruby_build_commands.rake index 24a77206a..d64b20ff3 100644 --- a/tasks/mruby_build_commands.rake +++ b/tasks/mruby_build_commands.rake @@ -271,7 +271,7 @@ module MRuby out.puts io.read end # if mrbc execution fail, drop the file - unless $?.exitstatus + if $?.exitstatus != 0 File.delete(out.path) exit(-1) end |
