From 0e6af5fe3c390bf250ae8cab0cc9f174ba42c367 Mon Sep 17 00:00:00 2001 From: Kenneth Ormandy Date: Fri, 28 Aug 2015 15:04:04 -0700 Subject: [PATCH] Fixes #59 --- lib/cli.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/cli.js b/lib/cli.js index d6ff004..b401870 100755 --- a/lib/cli.js +++ b/lib/cli.js @@ -33,11 +33,10 @@ var argv = minimist(process.argv.slice(2), options) try { console.log() - return surge({ argv: argv, read: read }) + surge({ argv: argv, read: read }) } catch(e) { console.log(e) console.log(" Invalid command.") console.log() require("./middleware/help")({ argv: argv }, new Function) } -