summaryrefslogtreecommitdiffstats
path: root/misc/scripts
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-06-14 18:49:41 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-06-14 18:49:41 +0200
commit33957aee69683cf1f542a8622e5a9efd23070f1c (patch)
tree90ed90e27800137ef4394954efe637ab7b40f474 /misc/scripts
parenteeb7f48203872b20bf0c588333ac851fa3fdca73 (diff)
parent3ed8721c979cc7e61ce0008d4f9f7d309b5d1813 (diff)
downloadredot-engine-33957aee69683cf1f542a8622e5a9efd23070f1c.tar.gz
Merge pull request #78226 from RedworkDE/gdextension-breaking-changes-update-3
Update list of known breaking changes compared to 4.0-stable (3)
Diffstat (limited to 'misc/scripts')
-rwxr-xr-xmisc/scripts/validate_extension_api.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/scripts/validate_extension_api.sh b/misc/scripts/validate_extension_api.sh
index 6cc22c9b63..e06d52115a 100755
--- a/misc/scripts/validate_extension_api.sh
+++ b/misc/scripts/validate_extension_api.sh
@@ -50,7 +50,7 @@ while read -r file; do
make_annotation "The following validation errors no longer occur (compared to $reference_tag):" "$obsolete_validation_error" warning "$file"
fi
if [ -n "$new_validation_error" ]; then
- make_annotation "Compatibility to $reference_tag is broken in the following ways:" "$new_validation_error" error README.md
+ make_annotation "Compatibility to $reference_tag is broken in the following ways:" "$new_validation_error" error "$file"
has_problems=1
fi