Skip to content

Commit

Permalink
Fix: Typo in error message when running npm
Browse files Browse the repository at this point in the history
  • Loading branch information
maciej-ka committed Jan 20, 2018
1 parent b96fb31 commit 0415206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/npm-util.js
Expand Up @@ -60,7 +60,7 @@ function installSyncSaveDev(packages) {
if (error && error.code === "ENOENT") {
const pluralS = packages.length > 1 ? "s" : "";

log.error(`Could not execute npm. Please install the following package${pluralS} with your package manager of choice: ${packages.join(", ")}`);
log.error(`Could not execute npm. Please install the following package${pluralS} with a package manager of your choice: ${packages.join(", ")}`);
}
}

Expand Down

0 comments on commit 0415206

Please sign in to comment.