Fix gocyclo check

This commit is contained in:
Christopher Goes 2018-07-17 02:29:46 +02:00
parent a6dd96db4d
commit a4e7216b36
1 changed files with 3 additions and 3 deletions

View File

@ -120,10 +120,10 @@ else
@echo "Installing unparam"
go get -v $(UNPARAM)
endif
ifdef GOYCLO_CHECK
@echo "goyclo is already installed. Run 'make update_tools' to update."
ifdef GOCYCLO_CHECK
@echo "gocyclo is already installed. Run 'make update_tools' to update."
else
@echo "Installing goyclo"
@echo "Installing gocyclo"
go get -v $(GOCYCLO)
endif