From bd8083e8b895d5ade531dc5fb1d8675a1ebf3b3b Mon Sep 17 00:00:00 2001 From: Simon Giesecke Date: Fri, 15 Jun 2018 09:38:44 +0200 Subject: [PATCH 1/2] Problem: wrong quotation marks in .clang-tidy Solution: use correct double quotes --- .clang-tidy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 2b61fff4..307f03ec 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -40,7 +40,7 @@ Checks: "*,\ -hicpp-use-auto,\ -hicpp-use-nullptr,\ -hicpp-no-array-decay,\ --hicpp-member-init“ +-hicpp-member-init" WarningsAsErrors: '' HeaderFilterRegex: '' # AnalyzeTemporaryDtors: false From 21ad652a1e0bc534e7a7cab425f0b083767767b1 Mon Sep 17 00:00:00 2001 From: Simon Giesecke Date: Fri, 15 Jun 2018 10:00:57 +0200 Subject: [PATCH 2/2] Problem: syntax error in shell script Solution: add missing quotation marks --- builds/cmake/ci_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builds/cmake/ci_build.sh b/builds/cmake/ci_build.sh index 09d445ce..9239c42d 100755 --- a/builds/cmake/ci_build.sh +++ b/builds/cmake/ci_build.sh @@ -6,7 +6,7 @@ cd ../.. # always install custom builds from dist # to make sure that `make dist` doesn't omit any files required to build & test -if [ -z $DO_CLANG_FORMAT_CHECK -a -z $CLANG_TIDY ]; then +if [ -z "$DO_CLANG_FORMAT_CHECK" -a -z "$CLANG_TIDY" ]; then ./autogen.sh ./configure make -j5 dist-gzip