From 930ea8a410b90e5d1b74287c32583372101cca58 Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Thu, 26 Oct 2023 12:22:30 -0700 Subject: [PATCH] Don't re-declare Lint outputs --- rules/impl.bzl | 1 - 1 file changed, 1 deletion(-) diff --git a/rules/impl.bzl b/rules/impl.bzl index 0cdf0e5..ed24561 100644 --- a/rules/impl.bzl +++ b/rules/impl.bzl @@ -114,7 +114,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)