Skip to content

Commit

Permalink
Skip conflict checking for backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed Nov 5, 2024
1 parent edefaf3 commit 27c55d8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions shell/private/root_symlinks.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ def _root_symlinks_impl(ctx):
path: _single_file_or_fail(target)
for target, path in ctx.attr.root_symlinks.items()
},
# Adding root symlinks from Starlark usually enables conflict checking,
# but that would break backwards compatibility as it affects all
# runfiles, not just the symlinks.
skip_conflict_checking = True,
)
return [
DefaultInfo(
Expand Down

0 comments on commit 27c55d8

Please sign in to comment.