mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +07:00
pkg/archive contains code both invoked from cli (cross platform) and daemon (linux only) and Unix-specific dependencies break compilation on Windows. We extracted those stat-related funcs into platform specific implementations at pkg/system and added unit tests. Signed-off-by: Ahmet Alp Balkan <ahmetb@microsoft.com>
15 lines
203 B
Go
15 lines
203 B
Go
package system
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func fromStatT(s *syscall.Stat_t) (*Stat, error) {
|
|
return &Stat{size: s.Size,
|
|
mode: s.Mode,
|
|
uid: s.Uid,
|
|
gid: s.Gid,
|
|
rdev: s.Rdev,
|
|
mtim: s.Mtim}, nil
|
|
}
|