10 lines
252 B
Plaintext
10 lines
252 B
Plaintext
|
#!/bin/bash -e
|
||
|
|
||
|
## Run this script through arc lint
|
||
|
|
||
|
if echo "$1" | egrep -q '.(cpp|hpp)$'; then
|
||
|
clang-tidy -quiet -p build "$1"
|
||
|
elif echo "$1" | egrep -q '.lcp$'; then
|
||
|
clang-tidy -quiet -p build "$1.cpp" "$(dirname $1)/$(basename $1 .lcp).hpp"
|
||
|
fi
|