You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 29, 2025. It is now read-only.
and then using the old_binary_name alias name in an bazel_rules_installinstaller() target will not install anything (but will also not complain); I suppose because the alias is actually just an internal name within bazel, but actually never shows up as tangible object.
For installation: My proposal would be to interpret the alias information and create either a symbolic link or a copy, depending on the installation platform.
(Of course, I could implement the legacy-names with a little shell-script which then exec's the new location etc., but it would be less platform agnostic. Using 'alias' is the exact abstraction that conveys the intent much better and the install target can use the additional context to do the right thing on the target platform - symbolic link or copy)