summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2018-02-08 07:00:14 +0100
committerDavid Ostrovsky <david@ostrovsky.org>2018-02-08 07:04:05 +0100
commit2ce2c9238282d5db87d722ebdf5247b23884a530 (patch)
tree11a37577c39c396b3f61a8bb717c24029b6bdc60
parent3c18ab315e99949d04735598d6033e15e19714e9 (diff)
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
-rw-r--r--gerrit-antlr/BUILD2
1 files changed, 1 insertions, 1 deletions
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",