From a35bf1c373110d6b8950e316684ce778c39af4c8 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 3 May 2023 09:56:50 +1000 Subject: [PATCH] Tools: use correct astype options in run_astyle.py --- Tools/scripts/run_astyle.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/scripts/run_astyle.py b/Tools/scripts/run_astyle.py index 2a9ac336b7..ecf78a19e1 100755 --- a/Tools/scripts/run_astyle.py +++ b/Tools/scripts/run_astyle.py @@ -32,6 +32,7 @@ class AStyleChecker(object): # for path in self.files_to_check: # self.progress("Checking (%s)" % path) astyle_command = ["astyle", "--dry-run"] + astyle_command.append("--options=Tools/CodeStyle/astylerc") astyle_command.extend(self.files_to_check) ret = subprocess.run( astyle_command,