Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Install an unlinked formula via brew install if --overwrite is passed #18536

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Library/Homebrew/cmd/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ def run
only_dependencies: args.only_dependencies?,
force: args.force?,
quiet: args.quiet?,
overwrite: args.overwrite?,
)
end

Expand Down
5 changes: 3 additions & 2 deletions Library/Homebrew/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ def install_formula?(
fetch_head: false,
only_dependencies: false,
force: false,
quiet: false
quiet: false,
overwrite: false
)
# head-only without --HEAD is an error
if !head && formula.stable.nil?
Expand Down Expand Up @@ -132,7 +133,7 @@ def install_formula?(
The currently linked version is: #{formula.linked_version}
EOS
end
elsif only_dependencies
elsif only_dependencies || (!formula.linked? && overwrite)
msg = nil
return true
elsif !formula.linked? || formula.keg_only?
Expand Down
Loading