mirror of
https://github.com/github/codeql.git
synced 2025-12-16 00:33:11 +01:00
16 lines
329 B
Python
16 lines
329 B
Python
load("@rules_shell//shell:sh_binary.bzl", "sh_binary")
|
|
|
|
alias(
|
|
name = "ripunzip",
|
|
actual = "@ripunzip",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
sh_binary(
|
|
name = "install",
|
|
srcs = ["install.sh"],
|
|
args = ["$(rlocationpath :ripunzip)"],
|
|
data = [":ripunzip"],
|
|
deps = ["//misc/bazel:sh_runfiles"],
|
|
)
|