From ff2fb18c76aad189a072e5fe4757a142a30cd8f4 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Wed, 11 Oct 2023 10:03:07 +0100 Subject: [PATCH] Remove extranous quote from help text --- lib/sharp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sharp.js b/lib/sharp.js index 7c91f574..629b8989 100644 --- a/lib/sharp.js +++ b/lib/sharp.js @@ -31,7 +31,7 @@ try { // Common error messages if (prebuiltPlatforms.includes(runtimePlatform)) { help.push('- Add an explicit dependency for the runtime platform:'); - help.push(` npm install --force @sharpen/sharp-${runtimePlatform}"`); + help.push(` npm install --force @sharpen/sharp-${runtimePlatform}`); } else { help.push(`- The ${runtimePlatform} platform requires manual installation of libvips >= ${minimumLibvipsVersion}`); }