summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2017-07-26 17:33:29 +0300
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2017-07-26 18:51:11 +0300
commit7dde832dc6dedb79551cfab279acee5cc863a2c1 (patch)
treea8818cda4b1347688427bcf2c791acbe383bdb9c
parentacd95c325afaf09976400d86733d26b83f28542f (diff)
downloadqtlocation-mapboxgl-7dde832dc6dedb79551cfab279acee5cc863a2c1.tar.gz
[tests] Bump clang-tidy/format version
4.0.0 was failing with the previous patch for no reason.
-rwxr-xr-xscripts/clang-tools.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/clang-tools.sh b/scripts/clang-tools.sh
index 48675e3ab1..bdda4544b9 100755
--- a/scripts/clang-tools.sh
+++ b/scripts/clang-tools.sh
@@ -3,11 +3,11 @@
set -e
set -o pipefail
-CLANG_TIDY_PREFIX=${CLANG_TIDY_PREFIX:-$(scripts/mason.sh PREFIX clang-tidy VERSION 4.0.0)}
+CLANG_TIDY_PREFIX=${CLANG_TIDY_PREFIX:-$(scripts/mason.sh PREFIX clang-tidy VERSION 4.0.1)}
CLANG_TIDY=${CLANG_TIDY:-${CLANG_TIDY_PREFIX}/bin/clang-tidy}
CLANG_APPLY=${CLANG_APPLY:-${CLANG_TIDY_PREFIX}/bin/clang-apply-replacements}
-CLANG_FORMAT=${CLANG_FORMAT:-$(scripts/mason.sh PREFIX clang-format VERSION 4.0.0)/bin/clang-format}
+CLANG_FORMAT=${CLANG_FORMAT:-$(scripts/mason.sh PREFIX clang-format VERSION 4.0.1)/bin/clang-format}
for CLANG_FILE in "${CLANG_TIDY} ${CLANG_APPLY} ${CLANG_FORMAT}"; do
command -v ${CLANG_TIDY} > /dev/null 2>&1 || {