We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 849fc5c commit d12952aCopy full SHA for d12952a
.github/workflows/ci.yml
@@ -1020,7 +1020,8 @@ jobs:
1020
- name: Run PEDM simulator (LocalSystem test)
1021
run: |
1022
$scriptPath = Resolve-Path -Path "./crates/pedm-simulator/run-expect-elevated.ps1"
1023
- psexec -accepteula -i -s pwsh.exe $scriptPath
+ psexec -accepteula -s pwsh.exe $scriptPath
1024
+ Get-Content -Path ./crates/pedm-simulator/pedm-simulator.out
1025
1026
success:
1027
name: Success
crates/pedm-simulator/run-expect-elevated.ps1
@@ -8,7 +8,7 @@ $exitCode = 0
8
9
try {
10
$Env:PEDM_SIMULATOR_EXPECT_ELEVATION = '1'
11
- & ./artifacts/pedm-simulator.exe
+ & ./artifacts/pedm-simulator.exe 2>&1 | Out-File ./pedm-simulator.out
12
$exitCode = $LASTEXITCODE
13
} finally {
14
Pop-Location
0 commit comments