Skip to content

Commit 502f550

Browse files
committed
Explicit module
Fixes consumer checks
1 parent 2842afb commit 502f550

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ def _merge_sourcelinks(name, sourcelinks):
6969
srcs = sourcelinks,
7070
outs = [name + ".json"],
7171
cmd = """
72-
$(location //scripts:merge_sourcelinks) \
72+
$(location @score_docs_as_code//scripts:merge_sourcelinks) \
7373
--output $@ \
7474
$(SRCS)
7575
""",
76-
tools = ["//scripts:merge_sourcelinks"],
76+
tools = ["@score_docs_as_code//scripts:merge_sourcelinks"],
7777
)
7878

7979
def docs(source_dir = "docs", data = [], deps = [], sourcelinks = []):
@@ -245,10 +245,10 @@ def sourcelinks_json(name, srcs, visibility = None):
245245
srcs = srcs,
246246
outs = [output_file],
247247
cmd = """
248-
$(location //scripts:generate_sourcelinks) \
248+
$(location @score_docs_as_code//scripts:generate_sourcelinks) \
249249
--output $@ \
250250
$(SRCS)
251251
""",
252-
tools = ["//scripts:generate_sourcelinks"],
252+
tools = ["@score_docs_as_code//scripts:generate_sourcelinks"],
253253
visibility = visibility,
254254
)

0 commit comments

Comments
 (0)