otelchi/test/infras/install_go.sh

9 lines
No EOL
165 B
Bash

#!/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