From e1c5e870de472cb788e9f0b18b3baa14165872db Mon Sep 17 00:00:00 2001 From: Mathias Buus Date: Sun, 15 Mar 2015 11:29:28 +0100 Subject: [PATCH] fix example --- README.md | 1 + example.js | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 2b42dcf..0b2cf02 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ var fuse = require('fuse-bindings') fuse.mount('./mnt', { readdir: function (path, cb) { + console.log('readdir(%s)', path) if (path === '/') return cb(0, ['test']) cb(0) }, diff --git a/example.js b/example.js index 94abbfd..fbf8202 100644 --- a/example.js +++ b/example.js @@ -2,6 +2,7 @@ var fuse = require('./') fuse.mount('./mnt', { readdir: function (path, cb) { + console.log('readdir(%s)', path) if (path === '/') return cb(0, ['test']) cb(0) },