summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorKate <26026535+provokateurin@users.noreply.github.com>2024-01-20 08:31:06 +0100
committerGitHub <noreply@github.com>2024-01-20 08:31:06 +0100
commit6f1393d34bd15e22519d3b9e03e2f0d62f2ec823 (patch)
treebe0e031f5b50a4d501a0db80d804bf90d8f994b4 /build
parent90e2146146966fd99bae1346fe06ffa89bd0a5c7 (diff)
parent993d5d4a6dc5434fe663bacff7f935ee11ba63f8 (diff)
downloadnextcloud-server-6f1393d34bd15e22519d3b9e03e2f0d62f2ec823.tar.gz
nextcloud-server-6f1393d34bd15e22519d3b9e03e2f0d62f2ec823.zip
Merge pull request #42974 from nextcloud/fix/build/openapi-diff-non-default
Diffstat (limited to 'build')
-rwxr-xr-xbuild/openapi-checker.sh2
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