diff options
author | Vincent Ambo <tazjin@tvl.su> | 2024-08-24T07·58+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-08-24T08·38+0000 |
commit | f22defa54179b42fdbf7b054d272fbe6e9d1ce04 (patch) | |
tree | 705c7e57bf815d6e4bc01be90bd5eadf2f25a2bb | |
parent | bfab474d0ce07968673fd516cab1469e02050038 (diff) |
fix(cgit-tvl): disable follow-links in cgit r/8574
These cause segfaults in cgit due to an old wontfix git issue: https://bugzilla.redhat.com/show_bug.cgi?id=1791810 Change-Id: I831655faf3cfdef5bad13eba8cb8bb274de83ea0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12307 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
-rw-r--r-- | web/cgit-tvl/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/cgit-tvl/default.nix b/web/cgit-tvl/default.nix index d26de9a5ebe7..1be2f29b81f0 100644 --- a/web/cgit-tvl/default.nix +++ b/web/cgit-tvl/default.nix @@ -15,7 +15,7 @@ let source-filter=${depot.tools.cheddar}/bin/cheddar enable-log-filecount=1 enable-log-linecount=1 - enable-follow-links=1 + enable-follow-links=0 enable-blame=1 mimetype-file=${pkgs.mime-types}/etc/mime.types logo=https://static.tvl.fyi/${depot.web.static.drvHash}/logo-animated.svg |