Skip to content

Commit

Permalink
Update README.md (#31)
Browse files Browse the repository at this point in the history
* Update README.md

* Update go.mod

fixes ```invalid go version '1.2x.x' must match format 1.23``` error

* Update README.md

edited GOPATH for source building instead renaming repo.
  • Loading branch information
neuweltgeld authored Jan 9, 2024
1 parent 5cc7310 commit 45cca76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ With this method, you generate the binary manually (need Go installed), download

```bash
git clone https://github.com/Layr-Labs/eigenlayer-cli.git
cd eigenlayer
cd eigenlayer-cli
mkdir -p build
go build -o build/eigenlayer cmd/eigenlayer/main.go
```
Expand All @@ -90,7 +90,7 @@ or if you have `make` installed:

```bash
git clone https://github.com/Layr-Labs/eigenlayer-cli.git
cd eigenlayer
cd eigenlayer-cli
make build
```

Expand All @@ -104,7 +104,7 @@ In case you want the binary in your PATH (or if you used the [Using Go](#install
sudo cp $GOPATH/bin/eigenlayer /usr/local/bin/

# Build from source
sudo cp eigenlayer/build/eigenlayer /usr/local/bin/
sudo cp eigenlayer-cli/build/eigenlayer /usr/local/bin/
```

## Create or Import Keys
Expand Down Expand Up @@ -245,4 +245,4 @@ You can also update the operator metadata using

```bash
eigenlayer operator update operator.yaml
```
```
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/Layr-Labs/eigenlayer-cli

go 1.21.0
go 1.21

require (
github.com/AlecAivazis/survey/v2 v2.3.7
Expand Down

0 comments on commit 45cca76

Please sign in to comment.