From f42924a9ca925be4c8e1cde4b226446aad1d3a88 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 27 Apr 2022 12:31:53 +0200 Subject: [PATCH] CI: accept clang-format 12-14 --- ci/calamaresstyle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/calamaresstyle b/ci/calamaresstyle index 52fe30737..d3d2aa099 100755 --- a/ci/calamaresstyle +++ b/ci/calamaresstyle @@ -45,11 +45,11 @@ test -x "$CF" || { echo "! $CF is not executable."; exit 1 ; } format_version=`"$CF" --version | tr -dc '[^.0-9]' | cut -d . -f 1` case "$format_version" in - 12|13 ) + 12|13|14 ) : ;; * ) - echo "! Clang-format version '$format_version' unsupported, version 12 required." + echo "! Clang-format version '$format_version' unsupported, version 12-14 required." exit 1 ;; esac