mirror of https://github.com/k3s-io/k3s
19 lines
337 B
Python
19 lines
337 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
load(
|
|
"@io_bazel_rules_go//go:def.bzl",
|
|
"go_binary",
|
|
)
|
|
|
|
go_binary(
|
|
name = "linkcheck",
|
|
srcs = ["links.go"],
|
|
tags = ["automanaged"],
|
|
deps = [
|
|
"//vendor:github.com/mvdan/xurls",
|
|
"//vendor:github.com/spf13/pflag",
|
|
],
|
|
)
|