Skip to content

Commit c835d64

Browse files
committed
images/go-runner: Fixup go module and build files
Signed-off-by: Stephen Augustus <[email protected]>
1 parent 11c018e commit c835d64

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ filegroup(
3434
"//cmd/kubepkg:all-srcs",
3535
"//cmd/release-notes:all-srcs",
3636
"//cmd/schedule-builder:all-srcs",
37+
"//images/build/go-runner:all-srcs",
3738
"//lib:all-srcs",
3839
"//packages/deb:all-srcs",
3940
"//pkg/announce:all-srcs",

images/build/go-runner/BUILD renamed to images/build/go-runner/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
33
go_library(
44
name = "go_default_library",
55
srcs = ["go-runner.go"],
6-
importpath = "k8s.io/kubernetes/build/go-runner",
6+
importpath = "k8s.io/release/images/build/go-runner",
77
visibility = ["//visibility:private"],
8-
deps = ["//vendor/github.com/pkg/errors:go_default_library"],
8+
deps = ["@com_github_pkg_errors//:go_default_library"],
99
)
1010

1111
go_binary(

images/build/go-runner/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module k8s.io/kubernetes/build/go-runner
1+
module k8s.io/release/images/build/go-runner
22

33
go 1.15
44

0 commit comments

Comments
 (0)