Skip to content

Commit

Permalink
Use release profile for installing from sources (#1225)
Browse files Browse the repository at this point in the history
  • Loading branch information
grandizzy authored Jun 25, 2024
1 parent a4a7c0c commit 8ee8364
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ foundryup --path path/to/foundry
Or, by using a single Cargo command:

```sh
cargo install --git https://github.com/foundry-rs/foundry --profile local --locked forge cast chisel anvil
cargo install --git https://github.com/foundry-rs/foundry --profile release --locked forge cast chisel anvil
```

Or, by manually building from a local copy of the [Foundry repository](https://github.com/foundry-rs/foundry):
Expand All @@ -67,13 +67,13 @@ Or, by manually building from a local copy of the [Foundry repository](https://g
git clone https://github.com/foundry-rs/foundry.git
cd foundry
# install Forge
cargo install --path ./crates/forge --profile local --force --locked
cargo install --path ./crates/forge --profile release --force --locked
# install Cast
cargo install --path ./crates/cast --profile local --force --locked
cargo install --path ./crates/cast --profile release --force --locked
# install Anvil
cargo install --path ./crates/anvil --profile local --force --locked
cargo install --path ./crates/anvil --profile release --force --locked
# install Chisel
cargo install --path ./crates/chisel --profile local --force --locked
cargo install --path ./crates/chisel --profile release --force --locked
```

### Installing for CI in Github Action
Expand Down

0 comments on commit 8ee8364

Please sign in to comment.