Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
add that comma back
Browse files Browse the repository at this point in the history
  • Loading branch information
mielnikk committed Aug 25, 2023
1 parent f4afb90 commit 0695724
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aspects/rules/scala/scala_info.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ def extract_scala_info(target, ctx, output_groups, **kwargs):
common_scalac_opts = []
scalac_opts = common_scalac_opts + getattr(ctx.rule.attr, "scalacopts", [])

scala_info = struct(scalac_opts = scalac_opts)
scala_info = struct(
scalac_opts = scalac_opts,
)

return create_proto(target, ctx, scala_info, "scala_target_info"), None

0 comments on commit 0695724

Please sign in to comment.