Salome HOME
Add cpplint to products for checking Jenkins build procedure
[modules/shaper.git] / findEndLines.sh
1 #!/bin/bash
2
3 source env.sh
4
5 find . \( -name "*.h" -o -name "*.cpp" \) -exec cpplint.py --filter=-,+whitespace/end_of_line  --verbose=0 --counting=detailed {} \+ 2>&1 | grep -v Done | tee ./tofix
6
7 #python correction_auto_2.py --cpplint_output_file ./tofix
8
9 rm ./tofix