Correct constant for post-receive hook name

This commit is contained in:
Marius 2017-01-26 23:16:22 +01:00
parent f50f03fe6f
commit b05382eced
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ type HookType string
const (
HookPostFinish HookType = "post-finish"
HookPostTerminate HookType = "post-terminate"
HookPostTerminate HookType = "post-terminate"
HookPostReceive HookType = "post-receive"
HookPreCreate HookType = "pre-create"
)