-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
fix: fix cygwin symlink #3624
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
fix: fix cygwin symlink #3624
Conversation
|
Also |
|
Can you link to where |
ljharb
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will need a regression test, that would have failed without the fix.
|
|
||
| # Linux or other environment | ||
| command rm -f "${NVM_DIR}/current" && ln -s "${NVM_VERSION_DIR}" "${NVM_DIR}/current" | ||
| ;; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ;; | |
| ;; |
|
You can see list of allowed values there. Aslo there is common special value
|
|
I will close this PR, absolutely have no time to finish it. |
|
That’s very unfortunate you deleted the fork; now nobody else can finish it for you. |
|
Oh, I am sorry. Usually PRs are not needed by anybody ;-) |
Under
cygwinenvironmentln -sworks incorrectly and creates full copy instead of a symbolic link.This patch fix this problem by using Windows
mklinkcommand to create directory junction.