diff options
-rwxr-xr-x | build/openapi-checker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/openapi-checker.sh b/build/openapi-checker.sh index ffcd12aea73..00b2b7d7baa 100755 --- a/build/openapi-checker.sh +++ b/build/openapi-checker.sh @@ -9,7 +9,7 @@ done files="$(git diff --name-only)" changed=false for file in $files; do - if [[ $file == *"openapi.json" ]]; then + if [[ $file == *"openapi"*".json" ]]; then changed=true break fi |