golangci-lint: optionally skip it during "make verify", II

The pull-kubernetes-verify job is using this to run the base
verify-golangci.sh only in the pull-kubernetes-verify-lint job.
Because the file name was not quite right, it still ran.
This commit is contained in:
Patrick Ohly 2024-02-13 17:33:54 +01:00
parent 39606af8c3
commit c1f2fe7bcb

View File

@ -61,7 +61,7 @@ fi
# Exclude golangci-lint if requested, for example in pull-kubernetes-verify.
if [[ ${EXCLUDE_GOLANGCI_LINT:-} =~ ^[yY]$ ]]; then
EXCLUDED_PATTERNS+=(
"verify-golangci.sh" # runs in separate pull-kubernetes-verify-lint
"verify-golangci-lint.sh" # runs in separate pull-kubernetes-verify-lint
)
fi