Skip to content

Commit

Permalink
Fix logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Jul 26, 2012
1 parent 980ee73 commit a4b512b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fs/_get-conf-file-map.js
Expand Up @@ -137,7 +137,7 @@ getMap = module.exports = function (path, mode, watch) {
var map = new Map(path, watch), isRoot;
map.filename = mode.filename;
isRoot = watch ? mode.isRootWatch : mode.isRoot;
map.findRoot = function (path) {
map.findRoot = function () {
var finder = new FindRoot(path, watch);
finder.isRoot = isRoot;
finder.next();
Expand Down

0 comments on commit a4b512b

Please sign in to comment.