mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
12 lines
303 B
Plaintext
12 lines
303 B
Plaintext
load("@bazel_skylib//rules:native_binary.bzl", "native_binary")
|
|
|
|
native_binary(
|
|
name = "ripunzip",
|
|
src = glob(["bin/ripunzip*"])[0],
|
|
out = "ripunzip" + select({
|
|
"@platforms//os:windows": ".exe",
|
|
"//conditions:default": "",
|
|
}),
|
|
visibility = ["//visibility:public"],
|
|
)
|