From dc8faceccd9c165bf7acbe320e751033fab630ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Mon, 29 Jun 2026 14:00:25 -0400 Subject: [PATCH] docs: fix shell operator in README install instructions Use && (sequential) instead of & (background) for running yarn and bundle install, ensuring both commands complete in order. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2041765d..4bdffbd6 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ npm install --global yarn **Install dependencies** inside of the project folder ```sh -yarn & bundle install +yarn && bundle install ``` **Build & serve**