mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
33fbac87fb
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
17 lines
462 B
Python
17 lines
462 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
# keep
|
|
go_library(
|
|
name = "tools_lib",
|
|
srcs = ["tools.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/hack/tools",
|
|
visibility = ["//visibility:private"],
|
|
deps = select({
|
|
"//bazel/settings:select_never_enabled": [
|
|
"@cc_mvdan_gofumpt//:gofumpt",
|
|
"@com_github_katexochen_sh_v3//cmd/shfmt",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|