1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-29 21:58:36 +00:00

update gopkg.in/src-d/go-git.v4 to v4.13.1 (#7705)

This commit is contained in:
Antoine GIRARD
2019-08-01 18:31:04 +02:00
committed by techknowlogick
parent 02999c9a44
commit bb22e3a1e1
5 changed files with 13 additions and 13 deletions

View File

@@ -12,7 +12,7 @@ import (
func init() {
fillSystemInfo = func(e *index.Entry, sys interface{}) {
if os, ok := sys.(*syscall.Stat_t); ok {
e.CreatedAt = time.Unix(os.Ctim.Sec, os.Ctim.Nsec)
e.CreatedAt = time.Unix(int64(os.Ctim.Sec), int64(os.Ctim.Nsec))
e.Dev = uint32(os.Dev)
e.Inode = uint32(os.Ino)
e.GID = os.Gid