From 0b24c336b347b2c38fb06eb18906e35f2a869b34 Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Thu, 31 Oct 2019 21:53:40 +0100 Subject: [PATCH] Fix golangci-lint target (#12985) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; \