Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(build): Fix OpenAPI diff on non-default specs
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin committed Jan 19, 2024
commit 993d5d4a6dc5434fe663bacff7f935ee11ba63f8
2 changes: 1 addition & 1 deletion build/openapi-checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down