Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created March 1, 2012 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacs/1950942 to your computer and use it in GitHub Desktop.
Save isaacs/1950942 to your computer and use it in GitHub Desktop.
$ git diff lib/utils/find-prefix.js
diff --git a/lib/utils/find-prefix.js b/lib/utils/find-prefix.js
index 320456c..bc2c959 100644
--- a/lib/utils/find-prefix.js
+++ b/lib/utils/find-prefix.js
@@ -45,6 +45,9 @@ function findPrefix_ (p, original, cb) {
return cb(null, p)
}
- return findPrefix_(path.dirname(p), original, cb)
+ var d = path.dirname(p)
+ if (d === p) return cb(null, original)
+
+ return findPrefix_(d, original, cb)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment