Skip to content

Commit

Permalink
added genrule for MODULE.bazel file in aspect_template directory
Browse files Browse the repository at this point in the history
This is required because otherwise the command to generate the deleted targets in .bazelrc would break.
  • Loading branch information
LeFrosch committed Oct 18, 2024
1 parent e2ac26a commit 2b277aa
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion aspect_template/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,11 @@ genrule(
outs = ["WORKSPACE"],
srcs = [],
cmd = r"""echo 'workspace(name = "intellij_aspect_template")' > $@"""
)
)

genrule(
name = "create_module_file",
outs = ["MODULE.bazel"],
srcs = [],
cmd = r"""echo '' > $@"""
)

0 comments on commit 2b277aa

Please sign in to comment.