summaryrefslogtreecommitdiffstats
path: root/models/repo.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/models/repo.go b/models/repo.go
index bad6f38680..9aed7d7d33 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -458,7 +458,9 @@ func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
}
func createUpdateHook(repoPath string) error {
- return ioutil.WriteFile(path.Join(repoPath, "hooks/update"),
+ hookPath := path.Join(repoPath, "hooks/update")
+ os.MkdirAll(path.Dir(hookPath), os.ModePerm)
+ return ioutil.WriteFile(hookPath,
[]byte(fmt.Sprintf(_TPL_UPDATE_HOOK, setting.ScriptType, "\""+appPath+"\"", setting.CustomConf)), 0777)
}