-
Notifications
You must be signed in to change notification settings - Fork 1.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
fix: infer OUT_DIR when workspace root contains a symlink #15868
Conversation
6f65c20
to
57b808e
Compare
Block on discussion in #15867 (comment) |
☔ The latest upstream changes (presumably #16088) made this pull request unmergeable. Please resolve the merge conflicts. |
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.
Okay thanks to the explanation given in the issue I can see the point of this change now 👍
644c946
to
9727bcf
Compare
Thanks! |
fix: failed to infer OUT_DIR when workspace root contains symlink fix #15867
💔 Test failed - checks-actions |
It seems that unit test has failed on windows.
panic 2
I will attempt to fix it. |
9727bcf
to
22cda95
Compare
@Veykril #[cfg(target_os = "windows")]
std::os::windows::fs::symlink_file(path, &symlink_path).unwrap(); replaced to #[cfg(target_os = "windows")]
std::os::windows::fs::symlink_dir(path, &symlink_path).unwrap(); |
Thanks! |
☀️ Test successful - checks-actions |
fix #15867