fix typo
This commit is contained in:
@@ -50,6 +50,8 @@ exports.compile = function (options, complete) {
|
||||
function writeBundle (source, next) {
|
||||
bundlePath = path.join(nodeCompiler.dir, "lib", "nexe.js");
|
||||
_log("bundle -> %s", bundlePath);
|
||||
|
||||
// same path as all the other JS files
|
||||
fs.writeFile(bundlePath, source, next);
|
||||
},
|
||||
|
||||
|
||||
+2
-1
@@ -1,5 +1,6 @@
|
||||
var async = require("async"),
|
||||
fs = require("fs");
|
||||
fs = require("fs"),
|
||||
_log = require("./log");
|
||||
|
||||
module.exports = _monkeypatch;
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
"author": "Craig Condon <craig.j.condon@gmail.com>",
|
||||
"name": "nexe",
|
||||
"description": "Roll node.s applications into a single executable",
|
||||
"version": "0.2.6",
|
||||
"version": "0.2.7",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/crcn/nexe.git"
|
||||
|
||||
Reference in New Issue
Block a user