Unverified Commit 640fca32 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #4056 from take-cheeze/fix_rake_jobs

Fix job waiter of minirake.
parents 485efd92 7c246cb9
......@@ -529,6 +529,8 @@ class RakeApp
next
end
wait_process while $rake_fiber_table.size >= $rake_jobs
f.resume
end
end
......@@ -577,6 +579,9 @@ class RakeApp
if st.exitstatus != 0
raise "Command Failed: [#{ent[:command]}]"
end
wait_process while $rake_fiber_table.size >= $rake_jobs
ent[:fiber].resume
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