Commit 1b3da0ce by xzyfer

Fix bug with join defaulting to comma separator

parent 9d15045e
......@@ -55,7 +55,7 @@ function afterBuild(options) {
function initSubmodules(cb) {
var errorMsg = '';
var git = spawn(['LIBSASS_GIT_VERSION=', pkg.libsass, ' ./scripts/git.sh'].join());
var git = spawn(['LIBSASS_GIT_VERSION=', pkg.libsass, ' ./scripts/git.sh'].join(''));
git.stderr.on('data', function(data) {
errorMsg += data.toString();
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment