Skip to content

Commit

Permalink
Put dictionaries in correct folder
Browse files Browse the repository at this point in the history
  • Loading branch information
wginolas committed Jan 21, 2025
1 parent 8a6e4db commit 1e1bf2f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion dictionaries/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
load("@rules_pkg//pkg:mappings.bzl", "pkg_filegroup", "pkg_files", "strip_prefix")

filegroup(
name = "files",
name = "dicionaries-root",
srcs = glob(["**"]),
)

pkg_files(
name = "files",
srcs = [
":dicionaries-root",
],
prefix = "dicionaries/",
strip_prefix = strip_prefix.from_pkg(),
visibility = ["//visibility:public"],
)

0 comments on commit 1e1bf2f

Please sign in to comment.