Files
codeql/swift/install/BUILD.bazel
Paolo Tranquilli 664d5ba0a9 Swift: moved install to a separate package
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.
2022-04-12 12:40:59 +02:00

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",
],
)