mirror of
https://github.com/cheat/cheat.git
synced 2024-11-23 22:41:35 +01:00
95a4e31b6c
Upgrade all dependencies to newest versions.
27 lines
458 B
Go
27 lines
458 B
Go
// +build darwin freebsd netbsd
|
|
|
|
package git
|
|
|
|
import (
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/go-git/go-git/v5/plumbing/format/index"
|
|
)
|
|
|
|
func init() {
|
|
fillSystemInfo = func(e *index.Entry, sys interface{}) {
|
|
if os, ok := sys.(*syscall.Stat_t); ok {
|
|
e.CreatedAt = time.Unix(os.Atimespec.Unix())
|
|
e.Dev = uint32(os.Dev)
|
|
e.Inode = uint32(os.Ino)
|
|
e.GID = os.Gid
|
|
e.UID = os.Uid
|
|
}
|
|
}
|
|
}
|
|
|
|
func isSymlinkWindowsNonAdmin(err error) bool {
|
|
return false
|
|
}
|