diff options
Diffstat (limited to 'internal/db/migrations/v15.go')
-rw-r--r-- | internal/db/migrations/v15.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/db/migrations/v15.go b/internal/db/migrations/v15.go index 7f3b9504..d9c913df 100644 --- a/internal/db/migrations/v15.go +++ b/internal/db/migrations/v15.go @@ -12,9 +12,10 @@ import ( "strings" "github.com/unknwon/com" - "xorm.io/xorm" log "gopkg.in/clog.v1" + "xorm.io/xorm" + "gogs.io/gogs/internal/osutil" "gogs.io/gogs/internal/setting" ) @@ -80,7 +81,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(customHookDir) { + if hookName != "update" && osutil.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) |