We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fdab4f4 + 9da7d30 commit 577872fCopy full SHA for 577872f
1 file changed
archive/time_unix.go
@@ -32,7 +32,7 @@ func chtimes(path string, atime, mtime time.Time) error {
32
utimes[1] = unix.NsecToTimespec(mtime.UnixNano())
33
34
if err := unix.UtimesNanoAt(unix.AT_FDCWD, path, utimes[0:], unix.AT_SYMLINK_NOFOLLOW); err != nil {
35
- return errors.Wrap(err, "failed call to UtimesNanoAt")
+ return errors.Wrapf(err, "failed call to UtimesNanoAt for %s", path)
36
}
37
38
return nil
0 commit comments