Ignore internal packages messages

This commit is contained in:
Antonio Ojea 2024-11-29 07:29:34 +00:00
parent f92bde1894
commit e5ebbdc3c7

View File

@ -225,7 +225,7 @@ compare () {
echo "$changes" echo "$changes"
echo echo
fi fi
incompatible=$(apidiff -incompatible -m "${before}" "${after}" 2>&1) || true incompatible=$(apidiff -incompatible -m "${before}" "${after}" 2>&1 | grep -v -e "^Ignoring internal package") || true
if [ -n "$incompatible" ]; then if [ -n "$incompatible" ]; then
failures+=("${what}") failures+=("${what}")
fi fi