Add Linux and macOS execution commands
Some checks failed
Repo Quality / structure (push) Has been cancelled
Some checks failed
Repo Quality / structure (push) Has been cancelled
This commit is contained in:
15
scripts/bootstrap.sh
Normal file
15
scripts/bootstrap.sh
Normal 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."
|
||||
|
||||
Reference in New Issue
Block a user