7 lines
244 B
PowerShell
7 lines
244 B
PowerShell
# Stop all stack processes (Docker + native). Thin wrapper around scripts\Stop-Stack.ps1.
|
|
$ErrorActionPreference = "Continue"
|
|
$Root = $PSScriptRoot
|
|
Set-Location -LiteralPath $Root
|
|
& (Join-Path $Root "scripts\Stop-Stack.ps1")
|
|
exit $LASTEXITCODE
|