bug fixed

This commit is contained in:
Lunny Xiao 2014-03-26 00:19:18 +08:00
parent 6177849fce
commit d374b13d44
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ func initRepository(f string, user *User, repo *Repository, initReadme bool, rep
}
// hook/post-update
pu, err := os.OpenFile(filepath.Join(repoPath, "hooks", "post-update"), os.O_CREATE|os.O_WRONLY, 0777)
pu, err := os.OpenFile(filepath.Join(repoPath, "hooks", "update"), os.O_CREATE|os.O_WRONLY, 0777)
if err != nil {
return err
}