Skip to content

Commit 5184bd0

Browse files
authored
fix(ci): foundryup install flag (#1678)
1 parent 547e64c commit 5184bd0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docker/foundry.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ RUN apt install -y curl git
99
# Install foundry
1010
RUN curl -L https://foundry.paradigm.xyz | bash
1111
ENV PATH="/root/.foundry/bin:${PATH}"
12-
RUN foundryup -v ${FOUNDRY_VERSION}
12+
RUN foundryup -i ${FOUNDRY_VERSION}

docs/0_internal/2_deploy_contracts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Also, you will be able to deploy the Batcher Payment Service contract.
1818

1919
```shell
2020
make install_foundry
21-
foundryup -v nightly-a428ba6ad8856611339a6319290aade3347d25d9
21+
foundryup -i nightly-a428ba6ad8856611339a6319290aade3347d25d9
2222
```
2323

2424
## AlignedServiceManager Contracts

docs/0_internal/3_a_upgrade_contracts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you deployed the contract using a Multisig wallet, you can follow the [Upgrad
2020

2121
```sh
2222
make install_foundry
23-
foundryup -v nightly-a428ba6ad8856611339a6319290aade3347d25d9
23+
foundryup -i nightly-a428ba6ad8856611339a6319290aade3347d25d9
2424
```
2525

2626
- Add the following variables to the `.env` file:

docs/0_internal/3_b_upgrade_contracts_with_multisig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In this guide we make an upgrade of Aligned Layer Service Manager contract using
3232

3333
```shell
3434
make install_foundry
35-
foundryup -v nightly-a428ba6ad8856611339a6319290aade3347d25d9
35+
foundryup -i nightly-a428ba6ad8856611339a6319290aade3347d25d9
3636
```
3737

3838
## Steps

docs/0_internal/4_b_pause_contracts_with_multisig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this guide we pause and unpause the AlignedLayerServiceManager and BatcherPay
3131

3232
```shell
3333
make install_foundry
34-
foundryup -v nightly-a428ba6ad8856611339a6319290aade3347d25d9
34+
foundryup -i nightly-a428ba6ad8856611339a6319290aade3347d25d9
3535
```
3636

3737
## Steps for Pausing

docs/3_guides/6_setup_aligned.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Install [Foundry](https://book.getfoundry.sh/getting-started/installation):
2929

3030
```bash
3131
make install_foundry
32-
foundryup -v nightly-a428ba6ad8856611339a6319290aade3347d25d9
32+
foundryup -i nightly-a428ba6ad8856611339a6319290aade3347d25d9
3333
```
3434

3535
Install the necessary submodules and build all the FFIs for your OS:

0 commit comments

Comments
 (0)