11 lines
301 B
Bash
Executable File
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;
|
|
|