Fix API validation script on macOS.

(cherry picked from commit 231c07d1af)
This commit is contained in:
bruvzg 2023-08-10 08:46:34 +03:00 committed by Yuri Sizov
parent 3076f2f9c9
commit ee009d26da
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
set -uo pipefail set -o pipefail
if [ ! -f "version.py" ]; then if [ ! -f "version.py" ]; then
echo "Warning: This script is intended to be run from the root of the Godot repository." echo "Warning: This script is intended to be run from the root of the Godot repository."
@ -18,7 +18,7 @@ make_annotation()
local body=$2 local body=$2
local type=$3 local type=$3
local file=$4 local file=$4
if [ ! -v GITHUB_OUTPUT ]; then if [[ "$GITHUB_OUTPUT" == "" ]]; then
echo "$title" echo "$title"
echo "$body" echo "$body"
else else
@ -43,8 +43,8 @@ while read -r file; do
awk '/^Validate extension JSON:/' - < "$file" | sort > "$allowed_errors" awk '/^Validate extension JSON:/' - < "$file" | sort > "$allowed_errors"
# Differences between the expected and actual errors # Differences between the expected and actual errors
new_validation_error="$(comm "$validation_output" "$allowed_errors" -23)" new_validation_error="$(comm -23 "$validation_output" "$allowed_errors")"
obsolete_validation_error="$(comm "$validation_output" "$allowed_errors" -13)" obsolete_validation_error="$(comm -13 "$validation_output" "$allowed_errors")"
if [ -n "$obsolete_validation_error" ]; then if [ -n "$obsolete_validation_error" ]; then
make_annotation "The following validation errors no longer occur (compared to $reference_tag):" "$obsolete_validation_error" warning "$file" make_annotation "The following validation errors no longer occur (compared to $reference_tag):" "$obsolete_validation_error" warning "$file"