-
Notifications
You must be signed in to change notification settings - Fork 25.8k
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(compiler-cli): fix relative source paths on windows for extracted msg #17915
Conversation
af72887
to
52cf473
Compare
Could you update the commit message to reflect what the change fix ? (ie "fix relative path on windows" maybe) |
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.
update the commit message to reflect what has been fixed
52cf473
to
5efe56e
Compare
aio failure is unrelated to this change |
You can preview 5efe56e at https://pr17915-5efe56e.ngbuilds.io/. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
PR Type
What kind of change does this PR introduce?
What is the current behavior?
The extracted source file paths was supposed to be relative, but we used a simple replace that doesn't work on windows (because we used two paths formatted differently), and the path was absolute instead of relative.
Issue Number: #16639
What is the new behavior?
The paths are relative on all platforms
Does this PR introduce a breaking change?