Remove extranous quote from help text

This commit is contained in:
Lovell Fuller 2023-10-11 10:03:07 +01:00
parent 28a9b1e9fa
commit ff2fb18c76

View File

@ -31,7 +31,7 @@ try {
// Common error messages // Common error messages
if (prebuiltPlatforms.includes(runtimePlatform)) { if (prebuiltPlatforms.includes(runtimePlatform)) {
help.push('- Add an explicit dependency for the runtime platform:'); 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 { } else {
help.push(`- The ${runtimePlatform} platform requires manual installation of libvips >= ${minimumLibvipsVersion}`); help.push(`- The ${runtimePlatform} platform requires manual installation of libvips >= ${minimumLibvipsVersion}`);
} }