Skip to content

Commit

Permalink
Fix recursive install loop
Browse files Browse the repository at this point in the history
  • Loading branch information
porsager committed Nov 28, 2017
1 parent 7d76cec commit 936ecfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const deps = packageJson.envDependencies

Object.keys(deps).map(key => deps[key]).map(insertEnvironmentVariables).forEach(pkg => {
try {
childProcess.execSync('npm install --no-save' + pkg, { stdio:[0, 1, 2] })
childProcess.execSync('npm install --no-save ' + pkg, { stdio:[0, 1, 2] })
} catch (e) { }
})

Expand Down

0 comments on commit 936ecfc

Please sign in to comment.