Skip to content
Snippets Groups Projects
Commit 51e83cdf authored by Bob W. Hogg's avatar Bob W. Hogg
Browse files

cmd/reinstall: Fix reinstallation of formulae without bottles


Reinstallation of non-bottled formulae was failing because it
used a deprecated method.

Signed-off-by: default avatarBob W. Hogg <rwhogg@linux.com>
parent 51aa2e3f
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ module Homebrew
fi = FormulaInstaller.new(f)
fi.options = options
fi.invalid_option_names = build_options.invalid_option_names
fi.build_bottle = ARGV.build_bottle? || (!f.bottled? && f.build.build_bottle?)
fi.build_bottle = ARGV.build_bottle? || (!f.bottled? && f.build.bottle?)
fi.build_from_source = ARGV.build_from_source? || ARGV.build_all_from_source?
fi.force_bottle = ARGV.force_bottle?
fi.interactive = ARGV.interactive?
......
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