etcd/scripts
Ivan Valdes dfda61bbbf
make: fix verify-dep
Makefile's target `verify-dep` current behavior is to use `go list` to
check consistent dependency versions from direct dependencies. Ignoring
indirect dependencies in a multi-module project could lead to version
mismatches. If module A imports module B, module B's dependency will be
an indirect dependency in module A. Which can potentially have a version
mismatch. Therefore, use `go mod edit` with indirect dependencies, too.
So it can work with all dependencies defined in go.mod.

Fix displaying dependencies with mismatches, as the old code was
searching with grep just for the prefix, which would show other
dependencies that shared the same prefix.

Signed-off-by: Ivan Valdes <ivan@vald.es>
2024-06-19 09:02:17 -07:00
..
2024-02-13 13:24:55 +05:30
2023-04-26 17:09:25 +12:00
2018-04-02 11:27:39 -07:00
2024-03-25 10:34:44 +08:00
2024-06-19 09:02:17 -07:00
2022-10-31 21:23:48 +08:00

scripts for etcd development