openpilot v0.5.12 release

old-commit-hash: 3f9059fea8
This commit is contained in:
Vehicle Researcher
2019-05-16 13:20:29 -07:00
parent d34a9b934c
commit 0932b367bd
177 changed files with 2910 additions and 827 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
pyflakes $(find . -iname "*.py" | grep -vi "^\./pyextra.*" | grep -vi "^\./panda")
RESULT=$?
if [ $RESULT -eq 0 ]; then
pylint $(find . -iname "*.py" | grep -vi "^\./pyextra.*" | grep -vi "^\./panda")
RESULT=$? & 3
fi
[ $RESULT -ne 0 ] && exit 1
exit 0