fix global install of needed tools

This commit is contained in:
2016-11-25 22:44:49 +01:00
parent 165000144c
commit 35a7a83ee6
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ export let install = (versionArg) => {
plugins.beautylog.log(`Tool ${npmTool} is available`)
} else {
plugins.beautylog.info(`globally installing ${npmTool} from npm`)
bash(`npm install -q -g ${npmTool}`)
bash(`npm install ${npmTool} -q -g`)
}
}
done.resolve()