Files
buildx/vendor/github.com/moby/go-archive/tarheader/tarheader_windows.go
2025-04-16 13:49:57 +02:00

13 lines
237 B
Go

package tarheader
import (
"archive/tar"
"os"
)
// sysStat populates hdr from system-dependent fields of fi without performing
// any OS lookups. It is a no-op on Windows.
func sysStat(os.FileInfo, *tar.Header) error {
return nil
}