Added useIno option

Added useIno option to add "use_ino" to mount options returned from _fuseOptions()
pull/33/head
Paul Robello 3 years ago committed by GitHub
parent 21658b5ebb
commit 0307a8c570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -192,6 +192,7 @@ class Fuse extends Nanoresource {
if (this.opts.noforget) options.push('noforget')
if (this.opts.remember) options.push('remember=' + this.opts.remember)
if (this.opts.modules) options.push('modules=' + this.opts.modules)
if (this.opts.useIno) options.push('use_ino')
if (this.opts.displayFolder && IS_OSX) { // only works on osx
options.push('volname=' + path.basename(this.opts.name || this.mnt))

Loading…
Cancel
Save