Skip to content
Snippets Groups Projects
Commit 569bd7c4 authored by Bovard Tiberi's avatar Bovard Tiberi Committed by Jack Nagel
Browse files

doctor: fix PATH issues in comments


Closes Homebrew/homebrew#25170.

Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent 07006bfd
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment