mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-05 05:24:16 -04:00
![renovate[bot]](/assets/img/avatar_default.png)
* deps: update bazel (modules) * bazel: add rules_shell dependency * deps: tidy all modules --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> Co-authored-by: edgelessci <edgelessci@users.noreply.github.com>
14 lines
246 B
Text
14 lines
246 B
Text
load("@rules_shell//shell:sh_library.bzl", "sh_library")
|
|
|
|
exports_files([
|
|
"repo_command.sh.in",
|
|
"noop_warn.sh.in",
|
|
])
|
|
|
|
sh_library(
|
|
name = "base_lib",
|
|
srcs = [
|
|
"lib.bash",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|