diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-07-26 17:33:29 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-07-26 18:51:11 +0300 |
commit | 7dde832dc6dedb79551cfab279acee5cc863a2c1 (patch) | |
tree | a8818cda4b1347688427bcf2c791acbe383bdb9c /scripts | |
parent | acd95c325afaf09976400d86733d26b83f28542f (diff) | |
download | qtlocation-mapboxgl-7dde832dc6dedb79551cfab279acee5cc863a2c1.tar.gz |
[tests] Bump clang-tidy/format version
4.0.0 was failing with the previous patch for no reason.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/clang-tools.sh | 4 |
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 || { |