8 lines
500 B
PowerShell
8 lines
500 B
PowerShell
param([string]$PostgresBin='D:\pgsql17\bin',[string]$PreparedPackageRoot='',[switch]$KeepTemporary,[switch]$BrowserHold)
|
|
$arguments=@('-NoProfile','-File',(Join-Path $PSScriptRoot '..\tests\e2e\run-isolated-e2e.ps1'),'-PostgresBin',$PostgresBin)
|
|
if(-not[string]::IsNullOrWhiteSpace($PreparedPackageRoot)){$arguments+=@('-PreparedPackageRoot',$PreparedPackageRoot)}
|
|
if($KeepTemporary){$arguments+='-KeepTemporary'}
|
|
if($BrowserHold){$arguments+='-BrowserHold'}
|
|
& pwsh.exe @arguments
|
|
exit $LASTEXITCODE
|