Files
2026-06-26 10:07:55 +08:00

10 lines
224 B
PowerShell

$ErrorActionPreference = "Stop"
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$nodeScript = Join-Path $scriptDir "test-install-restore.mjs"
node $nodeScript
if ($LASTEXITCODE -ne 0) {
exit $LASTEXITCODE
}