diff --git a/lib/index.js b/lib/index.js index 6f29002..fa67278 100644 --- a/lib/index.js +++ b/lib/index.js @@ -32,7 +32,7 @@ function wrapNode(path) { var nodePath = path + '/src/node.js', content = fs.readFileSync(nodePath,'utf8'); - content = content.replace(/\(function\(process\) \{/,'function(process){ \n process._eval = require("nexe"); '); + content = content.replace(/\(function\(process\) \{/,'(function(process){ \n process._eval = require("nexe"); '); fs.writeFileSync(nodePath, content); } @@ -196,7 +196,6 @@ exports.compile = function(ops, callback) { }); - console.log('Making nexe.js'); //combine the JS sardines.package({ input: entries, include: include, output: node.libDir + '/nexe.js' }, function(err) {