aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/style.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/style.sh')
-rwxr-xr-xscripts/style.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/style.sh b/scripts/style.sh
index e2f8207..317c8c6 100755
--- a/scripts/style.sh
+++ b/scripts/style.sh
@@ -23,8 +23,12 @@
system=$(uname -s)
-if [[ $(clang-format --version) != *"version 6"* ]]; then
- echo "Please upgrade to clang-format version 6."
+version=$(clang-format --version)
+version="${version/*version /}"
+version="${version/.*/}"
+if [[ "$version" != 6 && "$version" != 7 ]]; then
+ # Allow an older clang-format to accommodate Travis version skew.
+ echo "Please upgrade to clang-format version 7."
echo "If it's installed via homebrew you can run: brew upgrade clang-format"
exit 1
fi