Projet

Général

Profil

0001-build-don-t-output-pylint-differences-51542.patch

Frédéric Péters, 01 mars 2021 16:30

Télécharger (688 octets)

Voir les différences:

Subject: [PATCH] build: don't output pylint differences (#51542)

 pylint.sh | 2 --
 1 file changed, 2 deletions(-)
pylint.sh
10 10
	exit 0
11 11
fi
12 12

  
13
test -f pylint.out && cp pylint.out pylint.out.prev
14 13
pylint -f parseable --rcfile ${PYLINT_RC} "$@" | tee pylint.out || /bin/true
15
test -f pylint.out.prev && (diff pylint.out.prev pylint.out | grep '^[><]' | grep .py) || /bin/true
16
-