docs: remove bash -c

This commit is contained in:
Harald Hoyer 2026-05-07 14:45:24 +02:00
parent 365e3a7cc4
commit 483107196f

View file

@ -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
```