mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
13 lines
288 B
Python
13 lines
288 B
Python
load("@rules_pkg//pkg:mappings.bzl", "pkg_files", "strip_prefix")
|
|
|
|
pkg_files(
|
|
name = "downgrades",
|
|
srcs = glob(
|
|
["**"],
|
|
exclude = ["BUILD.bazel"],
|
|
),
|
|
prefix = "downgrades",
|
|
strip_prefix = strip_prefix.from_pkg(),
|
|
visibility = ["//rust:__pkg__"],
|
|
)
|