Skip to content

Commit

Permalink
Replace apt-get with apt
Browse files Browse the repository at this point in the history
  • Loading branch information
dineshpinto committed Jun 18, 2024
1 parent c8918ed commit 11bd7ad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/run-a-node/3-ftso-data-provider.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ yarn hardhat --network songbird register-entities
</TabItem>
<TabItem value="ubuntu" label="Ubuntu">
```bash
apt-get install jq
apt install jq
```

</TabItem>
Expand Down
4 changes: 2 additions & 2 deletions guides/2024-05-24-flare-for-javascript-developers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Install the Solidity compiler by following the instructions in the [Solidity doc
<TabItem value="ubuntu" label="Ubuntu via PPAs">
```bash
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install solc
sudo apt update
sudo apt install solc
```

</TabItem>
Expand Down
4 changes: 2 additions & 2 deletions guides/2024-05-26-flare-for-rust-developers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Install the Solidity compiler by following the instructions in the [Solidity doc
<TabItem value="ubuntu" label="Ubuntu via PPAs">
```bash
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install solc
sudo apt update
sudo apt install solc
```

</TabItem>
Expand Down
4 changes: 2 additions & 2 deletions guides/2024-05-27-flare-for-go-developers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Install Geth by following the instructions in the [Geth documentation](https://g
<TabItem value="ubuntu" label="Ubuntu via PPAs">
```bash
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum solc
sudo apt update
sudo apt install ethereum solc
```

</TabItem>
Expand Down

0 comments on commit 11bd7ad

Please sign in to comment.