diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-20T14·23+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-20T14·23+0000 |
commit | 2782a69a726d4a5b1458f65d494e39c7bc3f8214 (patch) | |
tree | 4f8cfbf36371328780ab0d79a7b07d8760a84091 | |
parent | ba7a48af75562b086834533ce308073709d2920e (diff) |
fix(cgit-taz): Depot checkout is no longer a bare repository r/214
To be compatible with sync-gcsr, the `.git` folder must be referenced directly as there is an actual worktree on the filesystem now.
-rw-r--r-- | services/cgit-taz/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/cgit-taz/default.nix b/services/cgit-taz/default.nix index e0ffabbabf6f..ab594cbcc231 100644 --- a/services/cgit-taz/default.nix +++ b/services/cgit-taz/default.nix @@ -16,7 +16,7 @@ let # Repository configuration repo.url=depot - repo.path=/git/depot + repo.path=/git/depot/.git repo.desc=tazjin's personal monorepo repo.owner=tazjin <tazjin@google.com> repo.clone-url=https://git.tazj.in ssh://source.developers.google.com:2022/p/tazjins-infrastructure/r/depot |