-
Notifications
You must be signed in to change notification settings - Fork 16
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: incorrect host alias symlink on some platforms #80
Conversation
a44b638
to
c7f1123
Compare
@@ -124,12 +125,9 @@ exports_files(["helm{ext}"]) | |||
ext = ext, | |||
)) | |||
|
|||
platform = "{}_{}".format(repository_ctx.os.name, repository_ctx.os.arch) | |||
platform_repo_name = _helm_bin_repo_name(platform) |
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.
One of the bugs here (and I must have not been testing under bzlmod) is that we need to use the actual name from the repository context to properly capture the bzlmod repo path in the symlink.
96cc0c0
to
1e8b98c
Compare
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 for putting up this PR!
1703734
to
dfed62e
Compare
dfed62e
to
4ab8ce3
Compare
4ab8ce3
to
e88448a
Compare
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.
Thank you!
Fixes #78.