diff options
author | Unknwon <u@gogs.io> | 2015-08-15 01:13:23 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-15 01:13:23 +0800 |
commit | e4d6b5d488981d78417e9c85eda8226ebb8b7e37 (patch) | |
tree | 95cb65f40717f8ccca82680c6c0109f8cab91c2e | |
parent | 13a74c3a0c946fc844ce9287fd87f2d91aab48d9 (diff) |
Creates hooks directory when init update hook
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | models/repo.go | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -7,7 +7,7 @@ Gogs (Go Git Service) is a painless self-hosted Git service.  -##### Current version: 0.6.4 Beta +##### Current version: 0.6.5 Beta ### NOTICES diff --git a/models/repo.go b/models/repo.go index bad6f386..9aed7d7d 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) } |