From fe60bc896db3d0158d398f3c38dc3f5059dc472a Mon Sep 17 00:00:00 2001 From: duckception Date: Tue, 12 Sep 2023 03:29:50 +0200 Subject: [PATCH] Fix dot --- commands/foundry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/foundry.js b/commands/foundry.js index d112a18a4..bccd1981e 100644 --- a/commands/foundry.js +++ b/commands/foundry.js @@ -187,7 +187,7 @@ async function validateIfAnvilIsInstalledOrThrow() { await which('anvil'); } catch (e) { throw new AnvilNotInstalledError( - 'Anvil not detected!. Forking is possible thanks to Anvil, a local testnet node shipped with Foundry. To install the Foundry toolchain please refer here: https://book.getfoundry.sh/getting-started/installation', + 'Anvil not detected! Forking is possible thanks to Anvil, a local testnet node shipped with Foundry. To install the Foundry toolchain please refer here: https://book.getfoundry.sh/getting-started/installation', ); } }