From af3911b83319609bff5f582a2e904027fffdce3a Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 22 Oct 2017 19:29:29 -0400 Subject: [PATCH] MISC: update README and migration comment --- README.md | 2 +- models/migrations/v15.go | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dfef11573..8fb0e2304 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Gogs [![Build Status](https://travis-ci.org/gogits/gogs.svg?branch=master)](https://travis-ci.org/gogits/gogs) [![Build status](https://ci.appveyor.com/api/projects/status/b9uu5ejl933e2wlt/branch/master?svg=true)](https://ci.appveyor.com/project/Unknwon/gogs/branch/master) [![Crowdin](https://d322cqt584bo4o.cloudfront.net/gogs/localized.svg)](https://crowdin.com/project/gogs) [![Sourcegraph](https://sourcegraph.com/github.com/gogits/gogs/-/badge.svg)](https://sourcegraph.com/github.com/gogits/gogs?badge) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/gogits/gogs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +Gogs [![Build Status](https://travis-ci.org/gogits/gogs.svg?branch=master)](https://travis-ci.org/gogits/gogs) [![Build status](https://ci.appveyor.com/api/projects/status/b9uu5ejl933e2wlt/branch/master?svg=true)](https://ci.appveyor.com/project/Unknwon/gogs/branch/master) [![Crowdin](https://d322cqt584bo4o.cloudfront.net/gogs/localized.svg)](https://crowdin.com/project/gogs) ===================== ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true) diff --git a/models/migrations/v15.go b/models/migrations/v15.go index 65b2a3139..ebee4964d 100644 --- a/models/migrations/v15.go +++ b/models/migrations/v15.go @@ -67,6 +67,8 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) { wikiPath := repoBase + ".wiki.git" log.Trace("[%04d]: %s", idx, repoPath) + // Note: we should not create hookDir here because update hook file should already exists inside this direcotry, + // if this directory does not exist, the current setup is not correct anyway. hookDir := filepath.Join(repoPath, "hooks") customHookDir := filepath.Join(repoPath, "custom_hooks") wikiHookDir := filepath.Join(wikiPath, "hooks")