From 2ce2c9238282d5db87d722ebdf5247b23884a530 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Thu, 8 Feb 2018 07:00:14 +0100 Subject: [PATCH] Bazel: Silent zip output in gerrit-antlr:query_antlr rule @bazel_tools//tools/zip:zipper was replaced with zip command in Ib2ce3e2c19, but "-q" option was missed to be passed to zip command. Change-Id: I3d203b632f8d4b12b89a08bf15eddcbf68e835ab --- gerrit-antlr/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gerrit-antlr/BUILD b/gerrit-antlr/BUILD index 1176d17fa6..6c3910626e 100644 --- a/gerrit-antlr/BUILD +++ b/gerrit-antlr/BUILD @@ -13,7 +13,7 @@ genrule2( cmd = " && ".join([ "$(location //lib/antlr:antlr-tool) -o $$TMP $<", "cd $$TMP", - "zip $$ROOT/$@ $$(find . -type f )", + "zip -q $$ROOT/$@ $$(find . -type f )", ]), tools = [ "//lib/antlr:antlr-tool",