mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
13 lines
263 B
Bash
Executable File
13 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ver=1.1.3
|
|
|
|
[[ -z "$GOBIN" ]] && echo "GOBIN not set" && exit 1
|
|
|
|
dir=$(mktemp -d)
|
|
cd "$dir"
|
|
echo "Now working from $dir"
|
|
curl -sSLO "https://releases.hashicorp.com/terraform/$ver/terraform_${ver}_linux_amd64.zip"
|
|
unzip -q *.zip
|
|
mv terraform "$GOBIN"
|