-
Notifications
You must be signed in to change notification settings - Fork 40
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
Support cross-drive linking #21
Comments
Please do - I am experiencing this issue also |
1 similar comment
Please do - I am experiencing this issue also |
Users of npm.im/pwsh reported this bug recently: cspotcode/npm-pwsh#18 |
Patch welcome for this. Or I'll get to it in a few weeks, probably. |
This comment has been minimized.
This comment has been minimized.
Just leaving a note here that it's likely that this will be a breaking change if implemented. (That's not to say it shouldn't be implemented, but just that it'll require a semver major bump, and an update to |
Currently we cannot link a file to a different drive. E.g.
cmdShim('C:\\a.js', 'D:\\a', () => {})
would generate files containg"$basedir/C:/a.js"
or"%~dp0\C:\a.js"
, which are broken due to the unresolvable paths.In this case, we can use an absolute path instead, i.e. using
"C:/a.js"
rather than"$basedir/C:/a.js"
.If this is a valid use case, I'd like to work on it.
The text was updated successfully, but these errors were encountered: