From c89aa4885cedfe420f8a8948444f970f5d3d49ea Mon Sep 17 00:00:00 2001 From: Julian lechner Date: Fri, 11 Sep 2026 16:06:52 +0200 Subject: [PATCH] fix(installer): add explicit exit 0 on success (PowerShell) Co-Authored-By: Claude Sonnet 5 --- scripts/install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index b0a107f..7480425 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -50,3 +50,4 @@ foreach ($item in $targets) { Install-ConfiguredPlugins -RepositoryRoot $root -Client $Client -DryRun:$DryRun -Update:$UpdatePlugins Write-Output ($(if ($DryRun) { 'PASS install dry-run' } else { 'PASS install' })) +exit 0