Skip to content

Commit

Permalink
Call npm with '--no-bin-links' when installing CLI deps, fixes #823
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Jun 9, 2017
1 parent 3a95945 commit eb1b404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function modExists(name, version) {
}

function modInstall(install) {
child_process.execSync("npm --silent install " + (typeof install === "string" ? install : install.join(" ")), {
child_process.execSync("npm --silent --no-bin-links install " + (typeof install === "string" ? install : install.join(" ")), {
cwd: __dirname,
stdio: "ignore"
});
Expand Down

0 comments on commit eb1b404

Please sign in to comment.