Skip to content

Commit

Permalink
feat: Install an unlinked formula via brew install if --overwrite
Browse files Browse the repository at this point in the history
… is passed

If the intention is to overwrite any existing links, then `brew install` should go on to install over an unlinked formula
  • Loading branch information
boblail committed Oct 12, 2024
1 parent 3291ad4 commit a5db113
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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

0 comments on commit a5db113

Please sign in to comment.