1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00
Files
installer/tools.go
Abhinav Dahiya c1dbb138f8 pkg/types: ensure kubebuilder can build correct documentation
go generate ./pkg/types/installconfig.go
2020-05-07 09:22:31 -07:00

15 lines
366 B
Go

// +build tools
// Official workaround to track tool dependencies with go modules:
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
package tools
import (
// dependency of hack/go-lint.sh
_ "golang.org/x/lint"
// dependency of generating CRD for install-config
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
)