diff --git a/.ci/clang-tidy.sh b/.ci/clang-tidy.sh index 323ba71..85e0e6f 100644 --- a/.ci/clang-tidy.sh +++ b/.ci/clang-tidy.sh @@ -5,7 +5,7 @@ bool=false # explicitly set IFS to contain only a line feed IFS=' ' -filelist="$(find . -not \( -path './*build*' -prune \) -not \( -path './include' -prune\) -type f ! -name "$(printf "*\n*")")" +filelist="$(find . -not \( -path './*build*' -prune \) -not \( -path './include' -prune \) -type f ! -name "$(printf "*\n*")")" for file in $filelist; do if echo "$file" | grep -q -E ".*(\.cpp|\.hpp)$" ; then #Extra check missing dependencies due to clang-tidy doesn't toggle exit code.