From 743758674ce51d3734ab75fe14d89e9e524a3e7a Mon Sep 17 00:00:00 2001 From: Harald Albers Date: Fri, 27 Dec 2024 12:25:06 +0000 Subject: [PATCH] Fix install link for golangci-lint Signed-off-by: albers --- hack/verify-golangci-lint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/verify-golangci-lint.sh b/hack/verify-golangci-lint.sh index 80a5bee8..448e4285 100755 --- a/hack/verify-golangci-lint.sh +++ b/hack/verify-golangci-lint.sh @@ -1,10 +1,10 @@ #!/bin/bash -e -# this script is invoked by the Makefile and is not used in the pipeline as it's done by a github actiono +# this script is invoked by the Makefile and is not used in the pipeline as it's done by a github action # so this script is intended for local testing if ! command -v golangci-lint &> /dev/null then - echo "WARNING: golangci-lint is not found. Hence linting is skipped. Visit https://golangci-lint.run/usage/install/#local-installation to install" + echo "WARNING: golangci-lint is not found. Hence linting is skipped. Visit https://golangci-lint.run/welcome/install/#local-installation to install" else golangci-lint run fi