aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBovard Tiberi2013-12-12 16:53:41 -0700
committerJack Nagel2013-12-12 20:07:39 -0600
commit814cc383937249b6f47849605c59595a78f18c0b (patch)
tree63e478166cb11f8ace4e37a8b2823ff72002da78
parentd272e3c9aa9bdd50c383f24ab281b2055a3655f7 (diff)
downloadhomebrew-814cc383937249b6f47849605c59595a78f18c0b.tar.bz2
doctor: fix PATH issues in comments
Closes #25170. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Homebrew/cmd/doctor.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 15922275d..e1dbf1678 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -500,7 +500,7 @@ def check_user_path_2
<<-EOS.undent
Homebrew's bin was not found in your PATH.
Consider setting the PATH for example like so
- echo export PATH="#{HOMEBREW_PREFIX}/bin:$PATH" >> ~/.bash_profile
+ echo export PATH='#{HOMEBREW_PREFIX}/bin:$PATH' >> ~/.bash_profile
EOS
end
end
@@ -514,7 +514,7 @@ def check_user_path_3
Homebrew's sbin was not found in your PATH but you have installed
formulae that put executables in #{HOMEBREW_PREFIX}/sbin.
Consider setting the PATH for example like so
- echo export PATH="#{HOMEBREW_PREFIX}/sbin:$PATH" >> ~/.bash_profile
+ echo export PATH='#{HOMEBREW_PREFIX}/sbin:$PATH' >> ~/.bash_profile
EOS
end
end