From 03fafa4d758bd35f5fb228c5f7986471604c043d Mon Sep 17 00:00:00 2001 From: David Mazarro Date: Sun, 3 Mar 2024 16:12:11 +0000 Subject: [PATCH] docs: Install instructions no longer misleading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I mentioned that running plain `cabal install` added the `wasm-verify` executable to your path: that was a lie, which makes me an 嘘つき. You have to do the `cabal install` before the `cabal exec`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9fbcddf..9247e5e 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ From within the project's root folder you can run the following command to build ``` cabal install ``` -If you would rather not have it in your path, you can build and execute the program from within the repo folder by running: +Once that's done, you can build and execute the program from within the repo folder by running: ``` cabal exec -- wasm-verify ```