File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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'
You can’t perform that action at this time.
0 commit comments