[BUG] Initalize Git for hook regeneration

- Backport of #2416
- The hook regeneration code relies on `git.SupportProcReceive` being
set to determine if the `proc-receive` hook should be written, this
variable is set when the git module is initialized.
- Resolves #2414

(cherry picked from commit 815abad84c)
This commit is contained in:
Gusted 2024-02-20 19:38:21 +01:00
parent 6c5121aac5
commit 2fb2e832c5
No known key found for this signature in database
GPG key ID: FD821B732837125F

View file

@ -428,6 +428,12 @@ func runRegenerateHooks(_ *cli.Context) error {
if err := initDB(ctx); err != nil {
return err
}
// Detection of ProcReceive support relies on Git module being initialized.
if err := git.InitFull(ctx); err != nil {
return err
}
return repo_service.SyncRepositoryHooks(graceful.GetManager().ShutdownContext())
}