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
This commit is contained in:
David Ostrovsky
2018-02-08 07:00:14 +01:00
parent 3c18ab315e
commit 2ce2c92382

View File

@@ -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",