Browse Source

migration: minor code fix (#1623)

Unknwon 8 years ago
parent
commit
fd5881fb64
1 changed files with 1 additions and 0 deletions
  1. 1 0
      models/migrations/v15.go

+ 1 - 0
models/migrations/v15.go

@@ -88,6 +88,7 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
 					return fmt.Errorf("write hook file '%s': %v", oldHookPath, err)
 				}
 
+				os.MkdirAll(wikiHookDir, os.ModePerm)
 				wikiHookPath := filepath.Join(wikiHookDir, hookName)
 				if err = ioutil.WriteFile(wikiHookPath, []byte(hookTpls[i]), os.ModePerm); err != nil {
 					return fmt.Errorf("write wiki hook file '%s': %v", wikiHookPath, err)