diff --git a/README.md b/README.md index 9a74cd05..634c4e66 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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 ``` @@ -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 @@ -245,4 +245,4 @@ You can also update the operator metadata using ```bash eigenlayer operator update operator.yaml -``` \ No newline at end of file +``` diff --git a/go.mod b/go.mod index a5c985e1..438caa93 100644 --- a/go.mod +++ b/go.mod @@ -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