mirror of
https://github.com/go-gitea/gitea.git
synced 2025-09-01 13:32:54 +09:00
Update src-d/go-git to v4.13.0 (#7688)
* update gopkg.in/src-d/go-git.v4 v4.13.0 * mod tidy * vendor
This commit is contained in:
committed by
techknowlogick
parent
bb875e98a1
commit
a9b4c8171f
2
vendor/gopkg.in/src-d/go-git.v4/worktree_linux.go
generated
vendored
2
vendor/gopkg.in/src-d/go-git.v4/worktree_linux.go
generated
vendored
@ -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(int64(os.Ctim.Sec), int64(os.Ctim.Nsec))
|
||||
e.CreatedAt = time.Unix(os.Ctim.Sec, os.Ctim.Nsec)
|
||||
e.Dev = uint32(os.Dev)
|
||||
e.Inode = uint32(os.Ino)
|
||||
e.GID = os.Gid
|
||||
|
Reference in New Issue
Block a user