Skip to content
Snippets Groups Projects
Commit c9652760 authored by Charlie Sharpsteen's avatar Charlie Sharpsteen
Browse files

ENV.rb: Always return integers from make_jobs

When referencing `Hardware.processor_count`, `ENV.make_jobs` will return an
integer. If referencing the environment variable `HOMEBREW_MAKE_JOBS`, it
returned a string.

Now, the function always returns an integer.

Fixes Homebrew/homebrew#12033.
parent 5582ca25
No related branches found
No related tags found
No related merge requests found
......@@ -432,7 +432,7 @@ Please take one of the following actions:
def make_jobs
# '-j' requires a positive integral argument
if self['HOMEBREW_MAKE_JOBS'].to_i > 0
self['HOMEBREW_MAKE_JOBS']
self['HOMEBREW_MAKE_JOBS'].to_i
else
Hardware.processor_count
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment