Merge branch 'stable-2.13' into stable-2.14

* stable-2.13:
  Bazel: Silent zip output in gerrit-antlr:query_antlr rule

Change-Id: Ifd6b046ebc9ad20a1e41df8246be6e5dac996d9d
diff --git a/gerrit-antlr/BUILD b/gerrit-antlr/BUILD
index a4b9abc..0b31708 100644
--- a/gerrit-antlr/BUILD
+++ b/gerrit-antlr/BUILD
@@ -16,7 +16,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",