mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c9ebd2f13b
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
17 lines
423 B
Go
17 lines
423 B
Go
// +build windows
|
|
|
|
package fsutil
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func rewriteMetadata(p string, stat *Stat) error {
|
|
return chtimes(p, stat.ModTime)
|
|
}
|
|
|
|
// 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")
|
|
}
|