mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-21 06:21:43 +00:00
- Change name of generated binary to `config` to match module name - Use GOBIN instead of GOPATH to simplify commands - Export GOBIN environment variable to the `go generate` command so it can find built commands
19 lines
476 B
Modula-2
19 lines
476 B
Modula-2
module sigs.k8s.io/kustomize/cmd/config
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/go-errors/errors v1.0.1
|
|
github.com/spf13/cobra v0.0.5
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/stretchr/testify v1.4.0
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
sigs.k8s.io/kustomize/kyaml v0.0.0
|
|
sigs.k8s.io/kustomize/pseudo/k8s v0.0.0
|
|
)
|
|
|
|
replace (
|
|
sigs.k8s.io/kustomize/kyaml v0.0.0 => ../../kyaml
|
|
sigs.k8s.io/kustomize/pseudo/k8s v0.0.0 => ../../pseudo/k8s
|
|
)
|