This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# A simple script to install Hashicorp tools with GPG key verification | |
set -euo pipefail | |
# Set DEST_PATH if not already set | |
HASHI_DEST_PATH="${HASHI_DEST_PATH:-/usr/local/bin}" | |
# Clean up downloaded files | |
HASHI_CLEAN="${HASHI_CLEAN:-true}" |
OlderNewer