From 9b490bcd66bbfeb31678caa488f8bfc9f8a8955e Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 7 Oct 2024 17:10:51 +0000 Subject: [PATCH] Fix indentation of external_includes This wasn't happening in the loop --- clang_tidy/clang_tidy.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang_tidy/clang_tidy.bzl b/clang_tidy/clang_tidy.bzl index 60b4aed..db6fc95 100644 --- a/clang_tidy/clang_tidy.bzl +++ b/clang_tidy/clang_tidy.bzl @@ -70,7 +70,7 @@ def _run_tidy( args.add_all(compilation_context.system_includes.to_list(), before_each = "-isystem") - args.add_all(compilation_context.external_includes.to_list(), before_each = "-isystem") + args.add_all(compilation_context.external_includes.to_list(), before_each = "-isystem") ctx.actions.run( inputs = inputs,