Xinjie 18075659de
feat(pipeline): Add EmbodiedGen version v0.1.0. (#2)
Add EmbodiedGen version v0.1.0.
2025-06-11 22:09:22 +08:00

11 lines
301 B
Bash
Executable File

#!/bin/bash
TOTAL_ERRORS=0
if [[ ! $(which cpplint) ]]; then
pip install cpplint
fi
# diff files on local machine.
files=$(git diff --cached --name-status | awk '$1 != "D" {print $2}')
python3 scripts/lint_src/lint.py --project=asset_recons --path $files --exclude_path thirdparty patch_files;