aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/pull.rb
diff options
context:
space:
mode:
authorMartin Afanasjew2016-05-01 14:59:39 +0200
committerMartin Afanasjew2016-05-02 21:19:09 +0200
commit02289fce4235ba7d887a7681b88def4dcef62727 (patch)
tree03727a4aaf3dc383aa0084545fbda8c4e990df53 /Library/Homebrew/cmd/pull.rb
parent8600b9edf128de542fd360a52a3a4732ab51f7f8 (diff)
downloadbrew-02289fce4235ba7d887a7681b88def4dcef62727.tar.bz2
Update Homebrew/homebrew references in code
Replace `homebrew` with `brew`, `homebrew-core`, or `legacy-homebrew` depending on context.
Diffstat (limited to 'Library/Homebrew/cmd/pull.rb')
-rw-r--r--Library/Homebrew/cmd/pull.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb
index 93470dc48..7347be561 100644
--- a/Library/Homebrew/cmd/pull.rb
+++ b/Library/Homebrew/cmd/pull.rb
@@ -43,7 +43,7 @@ module Homebrew
if arg.to_i > 0
issue = arg
if ARGV.include? "--legacy"
- url = "https://github.com/Homebrew/homebrew/pull/#{arg}"
+ url = "https://github.com/Homebrew/legacy-homebrew/pull/#{arg}"
else
url = "https://github.com/Homebrew/homebrew-core/pull/#{arg}"
end
@@ -146,7 +146,7 @@ module Homebrew
if issue && !ARGV.include?("--clean")
ohai "Patch closes issue ##{issue}"
if ARGV.include?("--legacy")
- close_message = "Closes Homebrew/homebrew##{issue}."
+ close_message = "Closes Homebrew/legacy-homebrew##{issue}."
else
close_message = "Closes ##{issue}."
end