Skip to content

Commit

Permalink
Merge pull request #13617 from carlocab/bzr-breezy
Browse files Browse the repository at this point in the history
download_strategy: replace `bazaar` with `breezy`
  • Loading branch information
carlocab authored Aug 1, 2022
2 parents e217fd3 + 467a454 commit ce8ef89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Library/Homebrew/dependency_collector.rb
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def resource_dep(spec, tags)
elsif strategy <= FossilDownloadStrategy
Dependency.new("fossil", tags)
elsif strategy <= BazaarDownloadStrategy
Dependency.new("bazaar", tags)
Dependency.new("breezy", tags)
elsif strategy <= CVSDownloadStrategy
cvs_dep_if_needed(tags)
elsif strategy < AbstractDownloadStrategy
Expand Down
2 changes: 1 addition & 1 deletion Library/Homebrew/download_strategy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ def last_commit

def env
{
"PATH" => PATH.new(Formula["bazaar"].opt_bin, ENV.fetch("PATH")),
"PATH" => PATH.new(Formula["breezy"].opt_bin, ENV.fetch("PATH")),
"BZR_HOME" => HOMEBREW_TEMP,
}
end
Expand Down

0 comments on commit ce8ef89

Please sign in to comment.