We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 651631d commit 46af08fCopy full SHA for 46af08f
.github/workflows/ci.yml
@@ -99,8 +99,8 @@ jobs:
99
run: |
100
Set-PSDebug -Trace 1
101
Invoke-WebRequest -Uri https://github.com/apple/foundationdb/releases/download/$env:FDB_VERSION/foundationdb-$env:FDB_VERSION-x64.msi -OutFile foundationdb-$env:FDB_VERSION-x64.msi
102
- msiexec /i foundationdb-$env:FDB_VERSION-x64.msi /passive
103
- echo "c:/Program Files/foundationdb/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
+ Start-Process -Wait -FilePath msiexec -ArgumentList /i, foundationdb-$env:FDB_VERSION-x64.msi, /passive
+ echo "C:\Program Files\foundationdb\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
104
- name: Install FoundationDB (macOS)
105
if: ${{ matrix.os == 'macos-latest' }}
106
0 commit comments