https://github.com/etcd-io/etcd
Raw File
Tip revision: 5cd1d285d744abf65dedefe1b374c13d7f2c7750 authored by Wenjia Zhang on 13 June 2024, 14:10:05 UTC
Bump the version to 3.4.33
Tip revision: 5cd1d28
install_all.sh
#!/usr/bin/env bash

set -euo pipefail

cd ./tools/mod || exit 2
go list --tags tools -f '{{ join .Imports "\n" }}' | xargs go install
back to top