From 32705e11a88d21232c7bef6679fe6213af22c901 Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Wed, 9 Mar 2022 10:59:57 -0800 Subject: [PATCH] Fix error message. --- generator/src/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/src/build.js b/generator/src/build.js index 353aa8de..0d7dc6b3 100755 --- a/generator/src/build.js +++ b/generator/src/build.js @@ -46,7 +46,7 @@ async function ensureRequiredExecutables() { try { await which("lamdera"); } catch (error) { - throw "I couldn't find elm on the PATH. Please ensure it's installed, either globally, or locally. If it's installed locally, ensure you're running through an NPM script or with npx so the PATH is configured to include it."; + throw "I couldn't find lamdera on the PATH. Please ensure it's installed, either globally, or locally. If it's installed locally, ensure you're running through an NPM script or with npx so the PATH is configured to include it."; } try { await which("elm-optimize-level-2");