Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit bba24d7

Browse files
committed
Restore the call on utimes on win32 platform
It was reverted by mafintosh/tar-fs@b49550a
1 parent 00706f5 commit bba24d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ exports.extract = function (cwd, opts) {
228228

229229
var stat = function (err) {
230230
if (err) return next(err)
231-
if (win32) return next()
232231
utimes(name, header, function (err) {
233232
if (err) return next(err)
233+
if (win32) return next()
234234
chperm(name, header, next)
235235
})
236236
}

0 commit comments

Comments
 (0)