bonzai-tree 1.0.120 → 1.0.122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bconfig.js +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/bconfig.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -129,7 +129,8 @@ async function main() {
|
|
|
129
129
|
return new Promise((resolve, reject) => {
|
|
130
130
|
const npm = spawn("npm", ["install"], {
|
|
131
131
|
stdio: "inherit",
|
|
132
|
-
cwd: bonzaiDir
|
|
132
|
+
cwd: bonzaiDir,
|
|
133
|
+
shell: true
|
|
133
134
|
});
|
|
134
135
|
npm.on("close", (code) => {
|
|
135
136
|
if (code === 0) {
|