From d20f6b429839b253706e3e34f9b7a4a6c05f3fc2 Mon Sep 17 00:00:00 2001 From: Maciej Kasprzyk Date: Fri, 2 Feb 2018 19:32:20 +0100 Subject: [PATCH] Fix: Typo in error message when running npm (#9866) --- lib/util/npm-util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/npm-util.js b/lib/util/npm-util.js index 6c431e0395b..1c0cc5c6a67 100644 --- a/lib/util/npm-util.js +++ b/lib/util/npm-util.js @@ -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(", ")}`); } }