Skip to content

Commit ba35730

Browse files
committed
Fix reference error
1 parent 84bcf30 commit ba35730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/library_nodefs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ addToLibrary({
171171
if (attr.atime || attr.mtime) {
172172
var atime = attr.atime && new Date(attr.atime);
173173
var mtime = attr.mtime && new Date(attr.mtime);
174-
fs.utimesSync(path, atime, mtime);
174+
fs.utimesSync(arg, atime, mtime);
175175
}
176176
if (attr.size !== undefined) {
177177
truncate(arg, attr.size);

0 commit comments

Comments
 (0)