mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-23 02:02:08 +08:00
77e450db57
5081966f One more fix fa5dc680 Fix honda dbc files after steer torque addition e4dfb2fa update honda steering signals (#208) 53fc4487 added generator test (#207) cb27d6e3 Honda Nidec: add new ACC_HUD signals to all other cars other than the CIVIC 6e6779f9 build on mac AND linux, also gotta not use these python files 79dbfc1a build on mac git-subtree-dir: opendbc git-subtree-split: 5081966f106e4ed385d756220cfd3dc502e737d9
14 lines
225 B
Bash
Executable File
14 lines
225 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
cd ../../generator/
|
|
|
|
# run generator
|
|
./generator.py
|
|
|
|
if [ -n "$(git status --untracked-files=no --porcelain)" ]; then
|
|
echo "Unexpected changes after running generator.py";
|
|
exit 1
|
|
else
|
|
echo "Success";
|
|
fi
|