mirror of https://github.com/go-gitea/gitea.git
Remove unnecessary loading of settings in update hook (#9496)
This PR simply makes update an empty command rather than needlessly load the settings for each reference.
This commit is contained in:
parent
3d5f31f77d
commit
154424623a
13
cmd/hook.go
13
cmd/hook.go
|
@ -181,18 +181,7 @@ Gitea or set your environment appropriately.`, "")
|
||||||
}
|
}
|
||||||
|
|
||||||
func runHookUpdate(c *cli.Context) error {
|
func runHookUpdate(c *cli.Context) error {
|
||||||
if len(os.Getenv("SSH_ORIGINAL_COMMAND")) == 0 {
|
// Update is empty and is kept only for backwards compatibility
|
||||||
if setting.OnlyAllowPushIfGiteaEnvironmentSet {
|
|
||||||
fail(`Rejecting changes as Gitea environment not set.
|
|
||||||
If you are pushing over SSH you must push with a key managed by
|
|
||||||
Gitea or set your environment appropriately.`, "")
|
|
||||||
} else {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
setup("hooks/update.log", false)
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue