From 80f4f62ea86b09f8834c7f100e73eba571ae5841 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Mon, 10 Mar 2025 15:55:17 +0200 Subject: [PATCH] hack: fix shellcheck --- hack/verify-golangci-lint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-golangci-lint.sh b/hack/verify-golangci-lint.sh index d0d47f0c6fa..7e3950ef2d9 100755 --- a/hack/verify-golangci-lint.sh +++ b/hack/verify-golangci-lint.sh @@ -131,7 +131,7 @@ fi # Verify that the given config is valid. "golangci-lint run" does not # do that, which makes it easy to miss mistakes while editing the configuration. -if ! failures=$( ${GOBIN}/golangci-lint config verify --config="${golangci_config:-}" 2>&1 ); then +if ! failures=$( "${GOBIN}/golangci-lint" config verify --config="${golangci_config:-}" 2>&1 ); then cat >&2 <