-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
fs.Dir: Give the option to stat a symbolic link #20843
base: master
Are you sure you want to change the base?
Conversation
Note that this will need Linux-specific |
Just dropping in again to say that it has been merged. |
I will make the necessary changes. |
Also removed redundancy (statLink and statLinkZ)
It should be good. |
From what i am seeing, the test fails with wasm because in |
That's not the relevant code for the test failure (that's only used for bootstrapping a Zig compiler). My guess is that it's EDIT: Confirmed both guesses:
and without (inclusion of
This is very likely to be either a EDIT#2: Unable to find a reproduction, filed a follow-up issue: #20890 |
Co-authored-by: Ryan Liptak <[email protected]>
Is it possible to redo the CI tests ? They did not fail because of my code |
Rebase the branch onto the latest master branch and it should get fixed. |
Is it good ? |
Looks good to me. One possible variation on this would be to make |
I think I lean towards preferring this FWIW. What other options do we imagine might come up in the future? |
This pull request adds
Dir.statLink
(withZ
andW
variants) to stat symlink.It also improves the windows version of
Dir.statFile
.