From 5d2683662f560b5254d52973b9f4281036e43e24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Ke=C3=9Fler?= Date: Thu, 4 Mar 2021 21:38:50 +0100 Subject: [PATCH] Fixed clang-format pipeline failure We intended to use clang-format-12, but 11 was used. --- azure-pipelines/util/format_diff_lines.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/util/format_diff_lines.pl b/azure-pipelines/util/format_diff_lines.pl index 5955421e..413022aa 100644 --- a/azure-pipelines/util/format_diff_lines.pl +++ b/azure-pipelines/util/format_diff_lines.pl @@ -13,7 +13,7 @@ my @hunks; # Current file my $current_file; -my @CLANG_FMT_CMDS = ("clang-format", "clang-format-9"); +my @CLANG_FMT_CMDS = ("clang-format-13","clang-format-12", "clang-format"); my $clang_format_cmd = ""; for my $c (@CLANG_FMT_CMDS) { if (`$c --version`) {