Skip to content

Commit 494d879

Browse files
gh-27: Fix error in GH Actions workflow.
1 parent 700809f commit 494d879

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Build interpreter and extensions (Developer PowerShell)
1919
shell: powershell
2020
run: |
21-
$vswhere = Join-Path $env:'ProgramFiles(x86)' 'Microsoft Visual Studio\Installer\vswhere.exe'
21+
$vswhere = Join-Path ${env:ProgramFiles(x86)} 'Microsoft Visual Studio\Installer\vswhere.exe'
2222
if (-not (Test-Path $vswhere)) { Write-Error "vswhere not found at $vswhere"; exit 1 }
2323
$inst = & $vswhere -latest -products * -requires Microsoft.Component.MSBuild -property installationPath
2424
if (-not $inst) { Write-Error 'Visual Studio installation not found'; exit 1 }
@@ -29,7 +29,7 @@ jobs:
2929
- name: Run tests (Developer PowerShell)
3030
shell: powershell
3131
run: |
32-
$vswhere = Join-Path $env:'ProgramFiles(x86)' 'Microsoft Visual Studio\Installer\vswhere.exe'
32+
$vswhere = Join-Path ${env:ProgramFiles(x86)} 'Microsoft Visual Studio\Installer\vswhere.exe'
3333
if (-not (Test-Path $vswhere)) { Write-Error "vswhere not found at $vswhere"; exit 1 }
3434
$inst = & $vswhere -latest -products * -requires Microsoft.Component.MSBuild -property installationPath
3535
if (-not $inst) { Write-Error 'Visual Studio installation not found'; exit 1 }

0 commit comments

Comments
 (0)