Skip to content

Commit 35e4066

Browse files
author
stoo
committed
more fixing
1 parent 8f1f2eb commit 35e4066

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build-windows-wheel-test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ jobs:
176176
foreach ($path in $paths) {
177177
if (Test-Path $path) {
178178
Write-Host "✅ Found: $path"
179-
Write-Host "Contents of $path:"
180-
Get-Content $path
179+
Write-Host "Contents of ${path}:"
180+
Get-Content -Path $path
181181
} else {
182182
Write-Error "❌ Missing: $path"
183183
exit 1
@@ -186,8 +186,7 @@ jobs:
186186
187187
# List all header files for verification
188188
Write-Host "Sparsehash directory structure:"
189-
Get-ChildItem "C:\sparsehash\src" -Recurse -Filter *.h | Select-Object FullName
190-
189+
Get-ChildItem "C:\sparsehash\src" -Recurse -Filter *.h | ForEach-Object { $_.FullName }
191190
# Set sparsehash environment variable regardless of cache hit
192191
- name: Set sparsehash environment (Windows)
193192
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)