From ba6d0c4f0bde2378956481caf8e412ddcef394c5 Mon Sep 17 00:00:00 2001 From: Nicolas Hedger Date: Mon, 20 Jun 2022 17:05:57 +0200 Subject: [PATCH] chore(docs): remove leading dollar sign --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7158ce7e..a5481d67 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,14 @@ Source code of reactphp.org. repository data and using the access token ensures that you don't run into API rate limits. -2. Install dependencies with `$ composer install`. +2. Install dependencies with `composer install`. ## Build Once set up, you can build the website by executing this: ```bash -$ bin/build +bin/build ``` This script will fetch all project repositories and then rebuild the entire website. @@ -32,14 +32,14 @@ If you're working on the website source code, you may want to skip fetching all components on every build like this: ```bash -$ bin/build --no-component-update +bin/build --no-component-update ``` If you're working on the website CSS or Javascript code, you will have to rebuild the static assets like this: ```bash -$ npm run-script build +npm run-script build ``` > Note that compiled assets are expected to change much less frequently and are @@ -58,7 +58,7 @@ contents of the `tmp/build` directory to the repository hosted in This deployment can be started by executing this: ```bash -$ bin/build --deploy +bin/build --deploy ``` Note that this will publish any changes you've made to your local repository,