~ remove dangling -not

This commit is contained in:
Johannes Theiner 2019-11-07 13:41:24 +00:00
parent 6d15703453
commit f8c9ca5b8d
1 changed files with 1 additions and 1 deletions

View File

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