forked from forgejo/forgejo
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:
parent
bb875e98a1
commit
a9b4c8171f
131 changed files with 3148 additions and 406 deletions
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue