Add Linux and macOS execution commands
Some checks failed
Repo Quality / structure (push) Has been cancelled

This commit is contained in:
Rodrigo Pace
2026-05-08 12:25:51 -03:00
parent 703e072682
commit 97cab6d894
5 changed files with 184 additions and 8 deletions

15
scripts/bootstrap.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
echo "Checking local tools..."
for tool in git terraform; do
if command -v "$tool" >/dev/null 2>&1; then
echo "$tool found: $(command -v "$tool")"
else
echo "WARNING: $tool not found in PATH" >&2
fi
done
echo "Bootstrap check finished."