-
-
Notifications
You must be signed in to change notification settings - Fork 55
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
Bug: sv-parser doesn't handle sources which are symlink. #86
Comments
When I modified the above-mentioned line of code to the following, I found that it fixed the problem. I don't know what side-effects this fix has on the overall behaviour of
|
@DaveMcEwan , Thanks for your comment. I have no permission to PR to
|
@DaveMcEwan , I've forked this repository and create a merge request! |
@Graian Would you mind closing this issue as it looks like your fix is merged. |
While building rust source with the
rules_rust
(rust_library
orrust_binary
) build rule in the bazel build system, I encountered a bug. Bazel creates working directories using symlinks to files, butsv-parser
checks if it's a file and ignores it if it's a symlink. so, requires an update to allowsv-parser
to handle symlinks.This line cause this issue.
The text was updated successfully, but these errors were encountered: