gitlab-ci: Fix untested commit that broke CI

b9f81e1c broke CI because it is a CI-related change but not tested on CI.
Despite https://developer.gimp.org/core/maintainer/giving-developer-right/
not making previous CI test mandatory, it is reasonable to do, even the infra
being sick. That is not the first time our CI got broken by lack of testing.
This commit is contained in:
Bruno 2024-11-24 10:54:17 -03:00
parent 52296cd3eb
commit 3b90d0b845
No known key found for this signature in database

View file

@ -290,7 +290,7 @@ gimp-debian-x64:
- ninja test
# Check source
- if [ $(git diff |wc -l) -ne 0 ]; then
echo "ERROR: a generated file was updated without the source:";
echo "ERROR. A generated file was updated without the source:";
git diff;
exit 1;
fi