Files
oracle-deep-data-security-lab/scripts/bootstrap.sh
Rodrigo Pace 97cab6d894
Some checks failed
Repo Quality / structure (push) Has been cancelled
Add Linux and macOS execution commands
2026-05-08 12:25:51 -03:00

16 lines
293 B
Bash

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