From fe64238b4cd5a7da403a4f29a62b14234ecba569 Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Tue, 14 Jun 2016 13:16:41 +0300 Subject: [tidy] Switched to Travis CI Fixes https://github.com/mapbox/mapbox-gl-native/issues/5341. --- scripts/clang-tidy.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/clang-tidy.sh b/scripts/clang-tidy.sh index ad86ed3f12..7665180cf7 100755 --- a/scripts/clang-tidy.sh +++ b/scripts/clang-tidy.sh @@ -5,7 +5,7 @@ set -o pipefail export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason" -CLANG_TIDY=${CLANG_TIDY:-$(mason prefix clang-tidy 3.8)/bin/clang-tidy} +CLANG_TIDY=${CLANG_TIDY:-$(mason prefix clang-tidy 3.8.0)/bin/clang-tidy} command -v ${CLANG_TIDY} >/dev/null 2>&1 || { echo "Can't find ${CLANG_TIDY} in PATH." @@ -18,9 +18,10 @@ command -v ${CLANG_TIDY} >/dev/null 2>&1 || { cd $1 function check_tidy() { + echo "Checking $0..." OUTPUT=$(${CLANG_TIDY} -p=$PWD $0 2>/dev/null) if [[ -n $OUTPUT ]]; then - echo "Error: A clang-tidy warning/error happened:" + echo "Caught clang-tidy warning/error:" echo -e "$OUTPUT" exit 1 fi -- cgit v1.2.1