Commit 2bbfd5dc authored by Inphi's avatar Inphi Committed by GitHub

make: Remove unused install-geth target (#13130)

parent 601af96c
......@@ -173,9 +173,6 @@ nuke: clean devnet-clean ## Completely clean the project directory
## Prepares for running a local devnet
pre-devnet: submodules $(DEVNET_CANNON_PRESTATE_FILES)
@if ! [ -x "$$(command -v geth)" ]; then \
make install-geth; \
fi
@if ! [ -x "$$(command -v eth2-testnet-genesis)" ]; then \
make install-eth2-testnet-genesis; \
fi
......@@ -247,14 +244,6 @@ update-op-geth: ## Updates the Geth version used in the project
./ops/scripts/update-op-geth.py
.PHONY: update-op-geth
install-geth: ## Installs or updates Geth if versions do not match
./ops/scripts/geth-version-checker.sh && \
(echo "Geth versions match, not installing geth..."; true) || \
(echo "Versions do not match, installing geth!"; \
go install -v github.com/ethereum/go-ethereum/cmd/geth@$(shell jq -r .geth < versions.json); \
echo "Installed geth!"; true)
.PHONY: install-geth
install-eth2-testnet-genesis:
go install -v github.com/protolambda/eth2-testnet-genesis@$(shell jq -r .eth2_testnet_genesis < versions.json)
.PHONY: install-eth2-testnet-genesis
......@@ -5,7 +5,6 @@ created with the `bedrock-devnet` package. To create this state,
run the following commands from the root of the repository:
```bash
make install-geth
make cannon-prestate
make devnet-allocs
```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment