-
Notifications
You must be signed in to change notification settings - Fork 893
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 home_dir() and current_dir() regression #3938
Conversation
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.
Thanks djc!
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.
Thanks a lot! However the implementation of var_os()
below is still a bit verbose... Can't we just call Process::var_os()
directly without the match
?
Good call! Also tacked on two more commits with some quick renaming. |
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.
LGTM modulo some rustc
/clippy
errors. Thanks again!
(fcb31a1 has passed my manual tests via UTM WoA on my Mac.)
5f20b19
to
452d9f9
Compare
Co-authored-by: rami3l <[email protected]>
452d9f9
to
52157df
Compare
Thanks for cleaning this up for me, wasn't able to follow up yesterday! |
In #3764 (specifically 204c8a9), I moved a bunch of code around and in the process mixed up the
OS
andTest
cases. Fix my mistake.Thanks @ChrisDenton for paying attention and bisecting!
As discussed in #3936.