~ one space missing in bash script

This commit is contained in:
Johannes Theiner 2019-11-28 10:59:01 +00:00
parent 82d728afd8
commit a088a6da1d
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 \( -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.