Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
fix makefile pr 192
Browse files Browse the repository at this point in the history
  • Loading branch information
surajkota committed Sep 16, 2022
1 parent 80f9cfb commit 3be0b34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fmt:

download-golint:
ifeq (, $(shell which golint))
go get golang.org/x/lint/golint
go install golang.org/x/lint/golint
GOLINT=$(shell go env GOPATH)/bin/golint
else
GOLINT=$(shell which golint)
Expand Down Expand Up @@ -100,7 +100,7 @@ docker-push:
# download controller-gen if necessary
controller-gen:
ifeq (, $(shell which controller-gen))
go get sigs.k8s.io/controller-tools/cmd/[email protected]
go install sigs.k8s.io/controller-tools/cmd/[email protected]
CONTROLLER_GEN=$(shell go env GOPATH)/bin/controller-gen
else
CONTROLLER_GEN=$(shell which controller-gen)
Expand Down

0 comments on commit 3be0b34

Please sign in to comment.