From 2995a3d9168117e23e5566cb7e453d8afe1926ee Mon Sep 17 00:00:00 2001 From: Craig Condon Date: Sat, 26 Nov 2011 17:30:13 -0600 Subject: [PATCH] can build node.js file from cwd now --- bin/nexe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/nexe b/bin/nexe index cbac202..e904a04 100755 --- a/bin/nexe +++ b/bin/nexe @@ -14,7 +14,7 @@ options('o', { demand: true, alias: 'output', desc: 'The output binary', - default: process.cwd() + path.basename(process.cwd()) + '.nex' + default: process.cwd() + '/' + path.basename(process.cwd()) + '.nex' }). options('r', { alias: 'runtime',