Initial Oracle Deep Data Security lab kit
This commit is contained in:
17
scripts/bootstrap.ps1
Normal file
17
scripts/bootstrap.ps1
Normal file
@@ -0,0 +1,17 @@
|
||||
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."
|
||||
Reference in New Issue
Block a user