about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-08-31T23·09-0400
committerglittershark <grfn@gws.fyi>2020-08-31T23·21+0000
commit7a83b8fe40eac0b05123e6cc3f4faecf86aed915 (patch)
tree8303d7ddbcfa2be8f968f30fda84a8e481e8fb24
parent2afa22e51223ab1651bead4d0cd267f69e73aa7c (diff)
fix(ops/monorepo-gerrit): Escape escape characters with more escape characters r/1752
Escape!

Change-Id: Idec7d17feda13ccf1ec03c41106ec6ed581d9e47
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1901
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
-rw-r--r--ops/nixos/monorepo-gerrit.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/nixos/monorepo-gerrit.nix b/ops/nixos/monorepo-gerrit.nix
index c3bac19072..eda64766f4 100644
--- a/ops/nixos/monorepo-gerrit.nix
+++ b/ops/nixos/monorepo-gerrit.nix
@@ -69,7 +69,7 @@ in {
 
       # Auto-link panettone bug links
       commentlink.panettone = {
-        match = "b/(\\d+)";
+        match = "b/(\\\\d+)";
         html = "<a href=\"https://b.tvl.fyi/issues/$1\">b/$1</a>";
       };