Skip to content

Commit aa2b197

Browse files
committed
fixes #221, building on windows
1 parent 6476888 commit aa2b197

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var path = require('path')
22
, exec = require('child_process').exec
33
, binPath = path.join(__dirname, "bin", "mimosa");
44

5-
exec(binPath + " build", function (error, stdout, stderr) {
5+
exec("node " + binPath + " build", function (error, stdout, stderr) {
66
console.log('stdout: ' + stdout);
77
console.log('stderr: ' + stderr);
88
if (error !== null) {

lib/modules/compilers/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ MimosaCompilerModule = (function() {
181181
use: ['nib'],
182182
"import": ['nib'],
183183
define: {},
184-
include: []
184+
includes: []
185185
}
186186
};
187187
};

0 commit comments

Comments
 (0)