Yeet those builds out!
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(internal/vfs): implement gname and uname for modtimefileinfo

Signed-off-by: Xe Iaso <me@xeiaso.net>

Xe Iaso 18f16f2d f515b413

+8
+8
internal/vfs/modtimefs.go
··· 63 63 return fi.Time 64 64 } 65 65 66 + func (fi modTimeFileInfo) Uname() (string, error) { 67 + return "root", nil 68 + } 69 + 70 + func (fi modTimeFileInfo) Gname() (string, error) { 71 + return "root", nil 72 + } 73 + 66 74 // modTimeDirEntry wraps fs.DirEntry to override Info().ModTime(). 67 75 type modTimeDirEntry struct { 68 76 fs.DirEntry