Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/390 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
27 lines
456 B
Go
27 lines
456 B
Go
// +build js
|
|
|
|
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(int64(os.Ctime), int64(os.CtimeNsec))
|
|
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
|
|
}
|