From b2e51fd24f95a47d7fb64095c5f9225f255807be Mon Sep 17 00:00:00 2001 From: Joel Linn Date: Thu, 23 Sep 2021 15:41:12 +0200 Subject: [PATCH] [xenia-build] Update clang-format version to 13 --- xenia-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xenia-build b/xenia-build index 0104eac7d..2efb2400e 100755 --- a/xenia-build +++ b/xenia-build @@ -430,7 +430,7 @@ def get_clang_format_binary(): attempts = [ 'C:\\Program Files\\LLVM\\bin\\clang-format.exe', 'C:\\Program Files (x86)\\LLVM\\bin\\clang-format.exe', - 'clang-format-9', + 'clang-format-13', 'clang-format', ] for binary in attempts: @@ -438,7 +438,7 @@ def get_clang_format_binary(): return binary print('ERROR: clang-format is not on PATH') print('LLVM is available from https://llvm.org/releases/download.html') - print('At least version 9 is required.') + print('At least version 13 is required.') print('See docs/style_guide.md for instructions on how to get it.') sys.exit(1)