From 4836af451fc987b47cc8ebbed92a529b6c8f6c59 Mon Sep 17 00:00:00 2001 From: Joshua Holbrook Date: Fri, 6 Jul 2012 21:30:35 -0800 Subject: [PATCH] [fix] fs.existsSync was moved to fs.existsSync --- eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eb b/eb index de41ef2..9f16935 100755 --- a/eb +++ b/eb @@ -99,14 +99,14 @@ function runLauncher(appLauncher) { * Check if express app.js exists **/ function isLibrary() { - return nodepath.existsSync(path + '/eb'); + return nodefs.existsSync(path + '/eb'); } /** * Check if .bootstrap exists **/ function isBootstrap() { - return nodepath.existsSync(path + '/.eb-status'); + return nodefs.existsSync(path + '/.eb-status'); } /**