Replies: 1 comment 1 reply
-
Hi, no the : is correct. ; stops setting the path and you would loose the remaining path. Best |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It seems that the path separator in
HowToMacOs.md
file is incorrect, it should be a semicolon instead of a colon:It is:
export PATH=/usr/local/bin:$PATH
Should be:
export PATH=/usr/local/bin;$PATH
Beta Was this translation helpful? Give feedback.
All reactions