Skip to content

Commit

Permalink
Use Go 1.12 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
superbrothers authored Apr 1, 2019
1 parent c9716a6 commit d0438ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go
go:
- "1.11"
- "1.12"
script:
- make vet
- make fmt
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ build-cross: $(OUTS)

.PHONY: vet
vet:
go tool vet -printfuncs Infof,Warningf,Errorf,Fatalf,Exitf pkg
go vet -printfuncs Infof,Warningf,Errorf,Fatalf,Exitf ./pkg/... ./cmd/...

.PHONY: fmt
fmt:
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/view-serviceaccount-kubeconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (o *ViewServiceaccountKubeconfigOptions) Run() error {
CurrentContext: context,
Clusters: map[string]*clientcmdapi.Cluster{
cluster: &clientcmdapi.Cluster{
Server: server,
Server: server,
CertificateAuthorityData: caCrt,
},
},
Expand Down

0 comments on commit d0438ec

Please sign in to comment.