mirror of
https://github.com/gogs/gogs.git
synced 2025-10-07 23:21:48 +00:00
migration: adjust rule to prevent migrate wrong hook file
This commit is contained in:
parent
78145cd166
commit
0f32aeec70
@ -75,7 +75,7 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
|
||||
// Gogs didn't allow user to set custom update hook thus no migration for it.
|
||||
// In case user runs this migration multiple times, and custom hook exists,
|
||||
// we assume it's been migrated already.
|
||||
if hookName != "update" && com.IsFile(oldHookPath) && !com.IsExist(newHookPath) {
|
||||
if hookName != "update" && com.IsFile(oldHookPath) && !com.IsExist(customHookDir) {
|
||||
os.MkdirAll(customHookDir, os.ModePerm)
|
||||
if err = os.Rename(oldHookPath, newHookPath); err != nil {
|
||||
return fmt.Errorf("move hook file to custom directory '%s' -> '%s': %v", oldHookPath, newHookPath, err)
|
||||
|
Loading…
x
Reference in New Issue
Block a user