aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorSema2013-01-27 15:35:02 +0400
committerJack Nagel2013-01-27 13:17:19 -0600
commit667b53ffb0702183a76274ed9f4a590344efdc5e (patch)
treed3513c1c0cf911a02318f25ceda3a7846efb68c7 /Library/Homebrew
parent2e23e9a22dc43b7fb4a52cd1976169f60513c9c0 (diff)
downloadbrew-667b53ffb0702183a76274ed9f4a590344efdc5e.tar.bz2
doctor: fix transposed git command
Closes Homebrew/homebrew#17338. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/doctor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 891ff70a5..3b68be396 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -746,7 +746,7 @@ def check_for_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 add remote origin https://github.com/mxcl/homebrew.git
+ git remote add origin https://github.com/mxcl/homebrew.git
EOS
end
end