language: fix: redundant glob in BAZEL rule (#263)

This commit is contained in:
Robin Krom 2019-04-05 23:37:26 +02:00 committed by Brian Healey
parent 550dde579c
commit 39083bf04a

View File

@ -4,6 +4,6 @@
filegroup(
name = "daml-prim-and-stdlib-src",
srcs = glob(["*.daml", "**/*.daml"]),
srcs = glob(["**/*.daml"]),
visibility = ["//visibility:public"]
)