2 Star 3 Fork 0

superxxd / openpilot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
flake8_openpilot.sh 350 Bytes
一键复制 编辑 原始数据 按行查看 历史
George Hotz 提交于 2020-01-17 10:22 . root directory non hidden files
#!/usr/bin/env bash
# only pyflakes check (--select=F)
RESULT=$(python3 -m flake8 --select=F $(eval echo $(cat <(find cereal) <(find opendbc) release/files_common release/files_common | tr '\n' ' ') | tr ' ' '\n' | grep "\.py$"))
if [[ $RESULT ]]; then
echo "Pyflakes found errors in the code. Please fix and try again"
echo "$RESULT"
exit 1
fi
1
https://gitee.com/superxxd/openpilot.git
git@gitee.com:superxxd/openpilot.git
superxxd
openpilot
openpilot
master

搜索帮助