mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
When importing the workspace from semmle-code, we do not need nor want to instantiate `@util`, so that must be in a separate bazel package.
12 lines
252 B
Python
12 lines
252 B
Python
load("@utils//:paths.bzl", "source_dir")
|
|
load("@rules_pkg//:install.bzl", "pkg_install")
|
|
|
|
pkg_install(
|
|
name = "install",
|
|
srcs = ["//swift:extractor-pack"],
|
|
args = [
|
|
"--destdir",
|
|
source_dir() + "/../extractor_pack",
|
|
],
|
|
)
|