7
mirror of https://gitlab.com/kicad/libraries/kicad-footprints.git synced 2025-04-23 14:33:43 +00:00
kicad-footprints/Display.pretty/library-check.sh
Oliver 3c586e1232 Copied display libraries
* Display.pretty
* Display_7Segment.pretty
2017-11-08 23:51:37 +11:00

11 lines
258 B
Bash

SCRIPT="/home/travis/build/kicad-library-utils/pcb/check_kicad_mod.py"
error=0
for change in $(git diff --name-only --diff-filter=AM $TRAVIS_COMMIT_RANGE); do
echo $change
python3 "$SCRIPT" "$change" -vv
error="$(($error+$?))"
done
exit $error