Manifestbasierter Production-Updater 3.3, Modulnavigation, optionales Produktbild Studio, Listing-Studio-Aktionsleiste sowie plattformübergreifende Windows-/Linux-Release-Gates.
15 lines
372 B
PowerShell
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
|