mirror of https://github.com/docker/cli.git
26 lines
551 B
Go
26 lines
551 B
Go
// +build windows
|
|
|
|
package fsutil
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func rewriteMetadata(p string, stat *Stat) error {
|
|
return chtimes(p, stat.ModTime)
|
|
}
|
|
|
|
func chtimes(path string, un int64) error {
|
|
mtime := time.Unix(0, un)
|
|
return os.Chtimes(path, mtime, mtime)
|
|
}
|
|
|
|
// handleTarTypeBlockCharFifo is an OS-specific helper function used by
|
|
// createTarFile to handle the following types of header: Block; Char; Fifo
|
|
func handleTarTypeBlockCharFifo(path string, stat *Stat) error {
|
|
return errors.New("Not implemented on windows")
|
|
}
|