Files
vendoo/scripts/update-vendoo.ps1
Masterluke77andGitHub 40071f718e Vendoo 1.43.0 – Production Update
Manifestbasierter Production-Updater 3.3, Modulnavigation, optionales Produktbild Studio, Listing-Studio-Aktionsleiste sowie plattformübergreifende Windows-/Linux-Release-Gates.
2026-07-10 13:16:21 +02:00

15 lines
372 B
PowerShell

[CmdletBinding()]
param(
[string]$StatusFile = '',
[string]$EventFile = '',
[string]$InputFile = '',
[string]$CancelFile = '',
[string]$SessionFile = '',
[switch]$SkipProductionDeploy,
[switch]$SelfTest,
[string]$SelfTestFailAt = ''
)
$worker = Join-Path $PSScriptRoot 'updater\Vendoo.Updater.Worker.ps1'
& $worker @PSBoundParameters
exit $LASTEXITCODE