Skip to content
Snippets Groups Projects
Commit 6e869769 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

Revert "doctor: use double quotes for setting PATH."

I'm an idiot.

This reverts commit f890e4973840a66a522189c8e5530bff61d17162.
parent 7846ed4f
No related branches found
No related tags found
No related merge requests found
...@@ -474,7 +474,7 @@ def check_user_path_1 ...@@ -474,7 +474,7 @@ def check_user_path_1
Consider setting your PATH so that #{HOMEBREW_PREFIX}/bin Consider setting your PATH so that #{HOMEBREW_PREFIX}/bin
occurs before /usr/bin. Here is a one-liner: occurs before /usr/bin. Here is a one-liner:
echo export PATH="#{HOMEBREW_PREFIX}/bin:$PATH" >> ~/.bash_profile echo export PATH='#{HOMEBREW_PREFIX}/bin:$PATH' >> ~/.bash_profile
EOS EOS
end end
end end
...@@ -492,7 +492,7 @@ def check_user_path_2 ...@@ -492,7 +492,7 @@ def check_user_path_2
<<-EOS.undent <<-EOS.undent
Homebrew's bin was not found in your PATH. Homebrew's bin was not found in your PATH.
Consider setting the PATH for example like so 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 EOS
end end
end end
...@@ -506,7 +506,7 @@ def check_user_path_3 ...@@ -506,7 +506,7 @@ def check_user_path_3
Homebrew's sbin was not found in your PATH but you have installed Homebrew's sbin was not found in your PATH but you have installed
formulae that put executables in #{HOMEBREW_PREFIX}/sbin. formulae that put executables in #{HOMEBREW_PREFIX}/sbin.
Consider setting the PATH for example like so 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 EOS
end end
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