From 28726c32e618dd2775219933768174bf3056ea87 Mon Sep 17 00:00:00 2001 From: Dimitri Saridakis Date: Wed, 9 Aug 2023 16:13:48 +0100 Subject: [PATCH] docs: remove dollar signs to allow for correct copy and paste --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5cdb6e1c..f5349d59 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,9 @@ The e2e tests can be executed locally by running the following commands: ```bash # Create a KinD cluster - $ make kind-e2e + make kind-e2e # Install the CRDs - $ make install + make install ``` [!NOTE] @@ -37,7 +37,7 @@ The e2e tests can be executed locally by running the following commands: 2. Start the operator locally: ```bash - $ make run + make run ``` Alternatively, You can run the operator from your IDE / debugger. @@ -45,13 +45,13 @@ The e2e tests can be executed locally by running the following commands: 3. Set up the test CodeFlare stack: ```bash - $ make setup-e2e + make setup-e2e ``` 4. In a separate terminal, run the e2e suite: ```bash - $ make test-e2e + make test-e2e ``` Alternatively, You can run the e2e test(s) from your IDE / debugger.