Projet

Général

Profil

0001-build-make-it-fail-in-case-of-pylint-warnings-52438.patch

Emmanuel Cazenave, 30 mars 2021 18:13

Télécharger (642 octets)

Voir les différences:

Subject: [PATCH 1/2] build: make it fail in case of pylint warnings (#52438)

 pylint.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
pylint.sh
1
#!/bin/sh
1
#!/bin/bash
2 2
set -e -x
3 3
env
4 4

  
5
pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out || /bin/true
5
pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out; test $PIPESTATUS -eq 0
6
-