We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4ec81e commit 1f8fd04Copy full SHA for 1f8fd04
ecsact/private/ecsact_binary.bzl
@@ -40,7 +40,9 @@ def _ecsact_binary_impl(ctx):
40
args.add("-o", runtime_output_file)
41
args.add("--temp_dir", temp_dir.path)
42
args.add("-f", "text")
43
- args.add("--report_filter", "errors_and_warnings")
+
44
+ report_filter = ctx.var.get("ECSACT_CLI_REPORT_FILTER", "errors_and_warnings")
45
+ args.add("--report_filter", report_filter)
46
47
compiler_config = {
48
"compiler_type": "auto",
0 commit comments