Commit 1b6f6413 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #1855 from take-cheeze/fix_mrbc_compile_error

Fix compile error check of Mrbc command.
parents 58362fc3 deb5f59b
...@@ -271,7 +271,7 @@ module MRuby ...@@ -271,7 +271,7 @@ module MRuby
out.puts io.read out.puts io.read
end end
# if mrbc execution fail, drop the file # if mrbc execution fail, drop the file
unless $?.exitstatus if $?.exitstatus != 0
File.delete(out.path) File.delete(out.path)
exit(-1) exit(-1)
end end
......
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