mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
fix sip test
only check for Python file if it is produced
This commit is contained in:
parent
4e38d0696e
commit
b2274258a4
@ -25,14 +25,16 @@ for module in "${modules[@]}"; do
|
||||
echo "*** Missing header: $header for sipfile $sipfile"
|
||||
else
|
||||
outdiff=$(./scripts/sipify.pl -p python/${module}/auto_additions/${pyfile}.temp $header | diff python/$sipfile.in -)
|
||||
outdiff2=$(diff python/${module}/auto_additions/${pyfile} python/${module}/auto_additions/${pyfile}.temp)
|
||||
if [[ -n "$outdiff" ]]; then
|
||||
echo " *** SIP file not up to date: $sipfile"
|
||||
code=1
|
||||
fi
|
||||
if [[ -n "$outdiff2" ]]; then
|
||||
echo " *** Python addition file not up to date: $sipfile"
|
||||
code=1
|
||||
if [[ -f python/${module}/auto_additions/${pyfile}.temp ]]; then
|
||||
outdiff2=$(diff python/${module}/auto_additions/${pyfile} python/${module}/auto_additions/${pyfile}.temp)
|
||||
if [[ -n "$outdiff2" ]]; then
|
||||
echo " *** Python addition file not up to date: $sipfile"
|
||||
code=1
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done < <(
|
||||
|
Loading…
x
Reference in New Issue
Block a user