mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6fcb36ff14
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
20 lines
284 B
Go
20 lines
284 B
Go
// +build !linux
|
|
|
|
package fsutil
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
func chtimes(path string, un int64) error {
|
|
mtime := time.Unix(0, un)
|
|
fi, err := os.Lstat(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if fi.Mode()&os.ModeSymlink != 0 {
|
|
return nil
|
|
}
|
|
return os.Chtimes(path, mtime, mtime)
|
|
}
|