Просмотр исходного кода

Merge pull request #278 from ricardoptcosta/lint-fix

minor correction in lint warning
paul-the-alien[bot] 4 лет назад
Родитель
Сommit
c734e4ddf5
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -96,7 +96,7 @@ build: generate ## Build binary
 # Check install of golanci-lint
 lint.check:
 	@if ! golangci-lint --version > /dev/null 2>&1; then \
-		echo -e "\033[0;33mgolangci-lint is not installed: run \`\033[0;32mmake lint-install\033[0m\033[0;33m\` or install it from https://golangci-lint.run\033[0m"; \
+		echo -e "\033[0;33mgolangci-lint is not installed: run \`\033[0;32mmake lint.install\033[0m\033[0;33m\` or install it from https://golangci-lint.run\033[0m"; \
 		exit 1; \
 	fi