Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
edited GOPATH for source building instead renaming repo.
  • Loading branch information
neuweltgeld authored Jan 9, 2024
1 parent 72263a5 commit fe2b6c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,17 @@ export PATH=$GOBIN:$PATH
With this method, you generate the binary manually (need Go installed), downloading and compiling the source code:

```bash
git clone https://github.com/Layr-Labs/eigenlayer-cli.git && mv eigenlayer-cli eigenlayer
cd eigenlayer
git clone https://github.com/Layr-Labs/eigenlayer-cli.git
cd eigenlayer-cli
mkdir -p build
go build -o build/eigenlayer cmd/eigenlayer/main.go
```

or if you have `make` installed:

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

Expand All @@ -103,7 +103,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

0 comments on commit fe2b6c2

Please sign in to comment.