From 65c1e301432ca7d8d8f4f249117f74f6940ec9d8 Mon Sep 17 00:00:00 2001 From: Joshua Holbrook Date: Fri, 6 Jul 2012 20:30:05 -0800 Subject: [PATCH] [fix] fs.exists was moved to fs.exists --- compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler.js b/compiler.js index d780547..338114f 100644 --- a/compiler.js +++ b/compiler.js @@ -842,7 +842,7 @@ } cb || (cb = function(){}); p = expand(p); - return path.exists(p, function(exists){ + return fs.exists(p, function(exists){ var ps, _p; if (exists) { return cb(null);