Skip to content

Commit 54883a6

Browse files
committed
Fix the broken slang alias.
It was using a path 'bazel/', but that path already exists in the main project, so bazel ended up symlinking to that directory. Unclear how that ever worked, or if bazel internally worked around the glitch, but this should fix it. Signed-off-by: Henner Zeller <h.zeller@acm.org>
1 parent ec10d06 commit 54883a6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ alias(
250250
visibility = ["//visibility:public"],
251251
)
252252
""",
253-
path = "bazel",
253+
path = "bazel/slang-compat",
254254
)
255255

256256
# --- Overrides ---

bazel/slang-compat/README

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Placeholder directory for the @slang alias build
2+
file to internally manifest.
3+
(see MODULE.bazel, new_local_repository(name="slang"))

0 commit comments

Comments
 (0)