From 012f2b1b0a8ffcad878111d6e2e8b903bc29f985 Mon Sep 17 00:00:00 2001 From: Ben Lee Date: Fri, 27 Oct 2023 13:41:47 -0700 Subject: [PATCH] Don't re-declare Lint outputs (#22) --- rules/impl.bzl | 1 - 1 file changed, 1 deletion(-) diff --git a/rules/impl.bzl b/rules/impl.bzl index b6377c7..7c26601 100644 --- a/rules/impl.bzl +++ b/rules/impl.bzl @@ -113,7 +113,6 @@ def _run_android_lint( args.add("--enable-check-dependencies") # Declare the output file - output = ctx.actions.declare_file("{}.xml".format(ctx.label.name)) args.add("--output", output) outputs.append(output)