Skip to content

Commit

Permalink
Fix \#9091: Remove and recreate the hook to set them executable with …
Browse files Browse the repository at this point in the history
…the umask
  • Loading branch information
zeripath committed Dec 27, 2019
1 parent 5748755 commit 8f444ad
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions models/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -967,6 +967,7 @@ func CreateDelegateHooks(repoPath string) error {

// createDelegateHooks creates all the hooks scripts for the repo
func createDelegateHooks(repoPath string) (err error) {

var (
hookNames = []string{"pre-receive", "update", "post-receive"}
hookTpls = []string{
Expand All @@ -992,10 +993,16 @@ func createDelegateHooks(repoPath string) (err error) {
}

// WARNING: This will override all old server-side hooks
if err = os.Remove(oldHookPath); err != nil && !os.IsNotExist(err) {
return fmt.Errorf("unable to pre-remove old hook file '%s' prior to rewriting: %v ", oldHookPath, err)
}
if err = ioutil.WriteFile(oldHookPath, []byte(hookTpls[i]), 0777); err != nil {
return fmt.Errorf("write old hook file '%s': %v", oldHookPath, err)
}

if err = os.Remove(newHookPath); err != nil && !os.IsNotExist(err) {
return fmt.Errorf("unable to pre-remove new hook file '%s' prior to rewriting: %v", newHookPath, err)
}
if err = ioutil.WriteFile(newHookPath, []byte(giteaHookTpls[i]), 0777); err != nil {
return fmt.Errorf("write new hook file '%s': %v", newHookPath, err)
}
Expand Down

0 comments on commit 8f444ad

Please sign in to comment.