Fixed the bazel run //:gazelle command in DEPENDENCIES.md. (#14934)

This commit is contained in:
Manu NALEPA
2025-02-14 16:00:10 +01:00
committed by GitHub
parent 501ec74a48
commit 3a1702e56f
2 changed files with 3 additions and 1 deletions

View File

@@ -55,7 +55,7 @@ bazel build //beacon-chain --config=release
## Adding / updating dependencies
1. Add your dependency as you would with go modules. I.e. `go get ...`
1. Run `bazel run //:gazelle -- update-repos -from_file=go.mod` to update the bazel managed dependencies.
1. Run `bazel run //:gazelle -- update-repos -from_file=go.mod -to_macro=deps.bzl%prysm_deps -prune=true` to update the bazel managed dependencies.
Example:

View File

@@ -0,0 +1,2 @@
### Fixed
- Fixed the `bazel run //:gazelle` command in `DEPENDENCIES.md`.