Skip to content

Commit d12952a

Browse files
committed
.
1 parent 849fc5c commit d12952a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,8 @@ jobs:
10201020
- name: Run PEDM simulator (LocalSystem test)
10211021
run: |
10221022
$scriptPath = Resolve-Path -Path "./crates/pedm-simulator/run-expect-elevated.ps1"
1023-
psexec -accepteula -i -s pwsh.exe $scriptPath
1023+
psexec -accepteula -s pwsh.exe $scriptPath
1024+
Get-Content -Path ./crates/pedm-simulator/pedm-simulator.out
10241025
10251026
success:
10261027
name: Success

crates/pedm-simulator/run-expect-elevated.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $exitCode = 0
88

99
try {
1010
$Env:PEDM_SIMULATOR_EXPECT_ELEVATION = '1'
11-
& ./artifacts/pedm-simulator.exe
11+
& ./artifacts/pedm-simulator.exe 2>&1 | Out-File ./pedm-simulator.out
1212
$exitCode = $LASTEXITCODE
1313
} finally {
1414
Pop-Location

0 commit comments

Comments
 (0)