aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-08-15 01:13:23 +0800
committerUnknwon <u@gogs.io>2015-08-15 01:13:23 +0800
commite4d6b5d488981d78417e9c85eda8226ebb8b7e37 (patch)
tree95cb65f40717f8ccca82680c6c0109f8cab91c2e
parent13a74c3a0c946fc844ce9287fd87f2d91aab48d9 (diff)
Creates hooks directory when init update hook
-rw-r--r--README.md2
-rw-r--r--models/repo.go4
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3703fdb1..96f67d6a 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Gogs (Go Git Service) is a painless self-hosted Git service.
![Demo](http://gogs.qiniudn.com/gogs_demo.gif)
-##### 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)
}