Files
oracle-deep-data-security-lab/scripts/bootstrap.ps1
Rodrigo Pace 5cd8752a90
Some checks failed
Repo Quality / structure (push) Has been cancelled
Terraform Validate / validate (push) Has been cancelled
Initial Oracle Deep Data Security lab kit
2026-05-08 12:08:05 -03:00

18 lines
366 B
PowerShell

param()
$ErrorActionPreference = "Stop"
Write-Host "Checking local tools..."
$tools = @("git", "terraform")
foreach ($tool in $tools) {
$cmd = Get-Command $tool -ErrorAction SilentlyContinue
if ($null -eq $cmd) {
Write-Warning "$tool not found in PATH"
} else {
Write-Host "$tool found: $($cmd.Source)"
}
}
Write-Host "Bootstrap check finished."