-
Notifications
You must be signed in to change notification settings - Fork 544
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Path incorrectly modified by GVM script #466
Comments
I'm seeing the same behaviour, but in this case it's mangling the path for VS Code: In In The version I'm running:
|
Same problem here, gvm is replacing spaces with : |
Ditto. I spent a day debugging to see why Also, it replaces (before gvm scripts mod) ❯ type cd
cd is a shell builtin (after gvm scripts mod) ❯ type cd
cd is a shell function from /home/zlatko/.gvm/scripts/env/cd |
@zalom i found a solution, just the space from this path ~/.gvm/scripts/function/munge_path line 51. |
Thanks man! |
This works for me. Thanks @caioreix ! Is this a typo or for some reason it is meant to be ': '? If its just a mistake maybe somebody can make a quick PR and fix it permanently? |
Installed gvm today and had the same problem. Removing the extra space in line 51 of Also further to what was already reported (replacement of spaces with a colon), Looking closely at the changes made to the PATH. I can see that many of my paths were simply chopped off. Here are some examples FROM: TO: So the problem is not limited with replacing spaces with colon. Some paths simply get chopped off at a space. |
@kaxxa123 I think this could be the solution. |
After installing GVM the line below was added to my
.zshrc
:This script seems to incorrectly update my
with
PATH
environment variable by replacing spaces:
. For example:The text was updated successfully, but these errors were encountered: