Files
Rodrigo db3d68af10
Some checks failed
Repo Quality / structure (push) Has been cancelled
Terraform Validate / validate (push) Has been cancelled
Improve Deep Data Security lab scenarios
2026-05-13 16:13:04 -03:00

18 lines
366 B
PowerShell
Executable File

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."