diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-29 07:36:04 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-29 07:37:50 -0700 |
commit | de8552dd334bb474e79d2d4089d3d0977b859463 (patch) | |
tree | be3c6db72c74a388745f0f55aea761a5fe086ebf /modules | |
parent | feat(cgit): update cgit configuration (diff) | |
download | world-de8552dd334bb474e79d2d4089d3d0977b859463.tar.gz |
fix(gerrit): remove git suffix from project URL
This has been dropped in cgit. Change-Id: I255ea20b4f81d080207ac8eac6f6727cac2d54f5 Reviewed-on: https://cl.fcuny.net/c/world/+/126 Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to '')
-rw-r--r-- | modules/services/gerrit/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/gerrit/default.nix b/modules/services/gerrit/default.nix index 0f83165..485bd58 100644 --- a/modules/services/gerrit/default.nix +++ b/modules/services/gerrit/default.nix @@ -61,7 +61,7 @@ in { gitweb = { type = "custom"; url = "https://git.fcuny.net"; - project = "/\${project}.git"; + project = "/\${project}"; revision = "/commit/?id=\${commit}"; branch = "/log/?h=\${branch}"; tag = "/tag/?h=\${tag}"; |