Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
Fixes #67
Browse files Browse the repository at this point in the history
Signed-off-by: Wright, Christopher R <[email protected]>
  • Loading branch information
Wright, Christopher R authored and Wright, Christopher R committed Oct 17, 2018
1 parent 83e3cad commit d4b596c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export function install(packageLocation: string, registry: string, installFromFi
// some form of a half-assed progress bar. This progress bar doesn't have any
// formatting or colors but at least I can get the output of stdout right.
iConsole.info("Installing packages...this may take some time.");
const execOutput = execSync(`npm install "${npmPackage}" --prefix ${PMFConstants.instance.PLUGIN_INSTALL_LOCATION} ` +
`-g --registry ${registry}`, {
const execOutput = execSync(`npm install "${npmPackage}" --prefix "${PMFConstants.instance.PLUGIN_INSTALL_LOCATION}" ` +
`-g --registry "${registry}"`, {
cwd: PMFConstants.instance.PMF_ROOT,
stdio: pipe
});
Expand Down

0 comments on commit d4b596c

Please sign in to comment.