mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
de56a90929
Signed-off-by: Tibor Vass <tibor@docker.com>
22 lines
346 B
Go
22 lines
346 B
Go
// +build !linux
|
|
|
|
package fsutil
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func chtimes(path string, un int64) error {
|
|
mtime := time.Unix(0, un)
|
|
fi, err := os.Lstat(path)
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
if fi.Mode()&os.ModeSymlink != 0 {
|
|
return nil
|
|
}
|
|
return errors.WithStack(os.Chtimes(path, mtime, mtime))
|
|
}
|