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
diff --git a/gerrit-antlr/BUILD b/gerrit-antlr/BUILD
index 1176d17..6c39106 100644
--- a/gerrit-antlr/BUILD
+++ b/gerrit-antlr/BUILD
@@ -13,7 +13,7 @@
     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",