diff --git a/Makefile b/Makefile index 08c3896881..4edd8b5b03 100644 --- a/Makefile +++ b/Makefile @@ -175,7 +175,7 @@ gofmt: ## Runs gofmt against all packages. golangci-lint: ## Run golangci-lint on codebasis # https://stackoverflow.com/a/677212/1027058 (check if a command exists or not) - @if ! [ -x "$$(command -v golangci-lintt)" ]; then \ + @if ! [ -x "$$(command -v golangci-lint)" ]; then \ echo "golangci-lint is not installed. Please see https://github.com/golangci/golangci-lint#install for installation instructions."; \ exit 1; \ fi; \