mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-17 03:45:56 +01:00
8 lines
166 B
Bash
8 lines
166 B
Bash
|
#!/usr/bin/env bash
|
||
|
dire=$1
|
||
|
if [ x$dire == "x" ];then
|
||
|
dire="src"
|
||
|
fi
|
||
|
|
||
|
find $dire -regex '.*\.\(h\|cpp\|mm\)' -type f -exec ./dist/cpplint.py --root=src {} 2>&1 \;
|