mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 02:23:39 -05:00
embedding the negation in the existing if
This commit is contained in:
parent
d975791bb9
commit
32a5945dd8
1 changed files with 1 additions and 6 deletions
|
@ -559,12 +559,7 @@ DetectKubernetesFile() {
|
|||
FILE="${1}" # File that we need to validate
|
||||
debug "Checking if ${FILE} is a Kubernetes descriptor..."
|
||||
|
||||
if grep -q -E 'apiVersion:\s*kustomize.config.k8s.io' "${FILE}" >/dev/null; then
|
||||
debug "${FILE} is NOT a Kubernetes descriptor (Kustomize only)"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if grep -q -E '(apiVersion):' "${FILE}" >/dev/null; then
|
||||
if grep -v 'kustomize.config.k8s.io' "${FILE}" | grep -q -E '(apiVersion):'; then
|
||||
debug "${FILE} is a Kubernetes descriptor"
|
||||
return 0
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue