double quotes

This commit is contained in:
James Kyle 2015-11-09 15:59:43 -08:00
parent 0f90b6eaf2
commit cd11f1e4f5

View File

@ -6,7 +6,7 @@ export default function () {
binVersionCheck("npm", ">=3.3.0", function (err) {
if (err) {
let message = `Your npm version is outdated. Upgrade to the latest version by running:\n$ ${chalk.magenta("npm install -g npm")}.`;
if (process.platform === 'win32') {
if (process.platform === "win32") {
message += ` See this guide if you are having trouble upgrading: ${chalk.underline.blue("https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows")}`;
}
resolve([false, message]);