fix(installer): add explicit exit 0 on success (PowerShell)

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Julian lechner
2026-09-11 16:06:52 +02:00
co-authored by Claude Sonnet 5
parent c9ef92e424
commit c89aa4885c
+1
View File
@@ -50,3 +50,4 @@ foreach ($item in $targets) {
Install-ConfiguredPlugins -RepositoryRoot $root -Client $Client -DryRun:$DryRun -Update:$UpdatePlugins Install-ConfiguredPlugins -RepositoryRoot $root -Client $Client -DryRun:$DryRun -Update:$UpdatePlugins
Write-Output ($(if ($DryRun) { 'PASS install dry-run' } else { 'PASS install' })) Write-Output ($(if ($DryRun) { 'PASS install dry-run' } else { 'PASS install' }))
exit 0