Skip to content

Commit

Permalink
add nlink to example
Browse files Browse the repository at this point in the history
  • Loading branch information
mafintosh committed Oct 2, 2017
1 parent 0fc47e4 commit a5f67aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ fuse.mount(mountPath, {
mtime: new Date(),
atime: new Date(),
ctime: new Date(),
nlink: 1,
size: 100,
mode: 16877,
uid: process.getuid ? process.getuid() : 0,
Expand All @@ -63,6 +64,7 @@ fuse.mount(mountPath, {
mtime: new Date(),
atime: new Date(),
ctime: new Date(),
nlink: 1,
size: 12,
mode: 33188,
uid: process.getuid ? process.getuid() : 0,
Expand Down
2 changes: 2 additions & 0 deletions example.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ fuse.mount(mountPath, {
mtime: new Date(),
atime: new Date(),
ctime: new Date(),
nlink: 1,
size: 100,
mode: 16877,
uid: process.getuid ? process.getuid() : 0,
Expand All @@ -28,6 +29,7 @@ fuse.mount(mountPath, {
mtime: new Date(),
atime: new Date(),
ctime: new Date(),
nlink: 1,
size: 12,
mode: 33188,
uid: process.getuid ? process.getuid() : 0,
Expand Down

0 comments on commit a5f67aa

Please sign in to comment.