From a088a6da1dd59b24abc17529baacd23910ff50e1 Mon Sep 17 00:00:00 2001 From: Johannes Theiner Date: Thu, 28 Nov 2019 10:59:01 +0000 Subject: [PATCH] ~ one space missing in bash script --- .ci/clang-tidy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.