otelchi/test/infras/install_go.sh

9 lines
165 B
Bash
Raw Normal View History

2025-03-22 23:29:15 +13:00
#!/bin/sh
# Define Go versions
go_versions=${GO_VERSIONS}
# Install each Go version using gobrew
for version in $go_versions; do
gobrew install "$version"
done