mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
12 lines
273 B
Python
12 lines
273 B
Python
load("@utils//:source_dir.bzl", "current_source_dir")
|
|
load("@rules_pkg//:install.bzl", "pkg_install")
|
|
|
|
pkg_install(
|
|
name = "install",
|
|
srcs = ["//swift:extractor-pack"],
|
|
args = [
|
|
"--destdir",
|
|
current_source_dir() + "/../extractor_pack",
|
|
],
|
|
)
|