aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/doctor.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-12-14 18:15:12 +0000
committerMike McQuaid2013-12-14 23:11:16 +0000
commit913f6c18876cfc8f4859e7ed7c9cc9d19d27c90b (patch)
treeadcb4ea4c4e77c9a92fe5f9200ffcf1be3deda00 /Library/Homebrew/cmd/doctor.rb
parent660e794ac67e6043089c34695ca4ae1198679b09 (diff)
downloadhomebrew-913f6c18876cfc8f4859e7ed7c9cc9d19d27c90b.tar.bz2
doctor: check for migrated origin Git remote.
Closes #25211.
Diffstat (limited to 'Library/Homebrew/cmd/doctor.rb')
-rw-r--r--Library/Homebrew/cmd/doctor.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 62c028f67..f4fe611d7 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -775,9 +775,9 @@ def check_git_origin
Without a correctly configured origin, Homebrew won't update
properly. You can solve this by adding the Homebrew remote:
cd #{HOMEBREW_REPOSITORY}
- git remote add origin https://github.com/mxcl/homebrew.git
+ git remote add origin https://github.com/Homebrew/homebrew.git
EOS
- elsif origin !~ /mxcl\/homebrew(\.git)?$/ then <<-EOS.undent
+ elsif origin !~ /Homebrew\/homebrew(\.git)?$/ then <<-EOS.undent
Suspicious git origin remote found.
With a non-standard origin, Homebrew won't pull updates from
@@ -786,7 +786,7 @@ def check_git_origin
Unless you have compelling reasons, consider setting the
origin remote to point at the main repository, located at:
- https://github.com/mxcl/homebrew.git
+ https://github.com/Homebrew/homebrew.git
EOS
end
end