From 483107196f47e1f2ebf0095bbd5734592c43b70d Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 7 May 2026 14:45:24 +0200 Subject: [PATCH] docs: remove `bash -c` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c367124..c96b420 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The game features: ## How to Compile ``` -nix develop --command bash -c "cargo build" +nix develop --command cargo build ``` ## How to Run @@ -33,7 +33,7 @@ nix develop --command bash -c "cargo build" 1. Make sure you have Rust and Nix installed. 2. Clone the repository. 3. Navigate to the project directory. -4. Run the game using the command: `nix develop --command bash -c "cargo run"` +4. Run the game using the command: `nix develop --command cargo run` ## Headless Screenshots @@ -56,6 +56,6 @@ warm-up (Bevy + software Vulkan needs roughly that long to render its first frame): ``` -cargo build +nix develop --command cargo build nix run .#take-screenshots -- ./target/debug/bglga 3 6 1 ./shots ```