We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6908310 commit 134c719Copy full SHA for 134c719
1 file changed
scripts/main.ps1
@@ -53,7 +53,7 @@ foreach ($file in $files) {
53
# 3. Normalize the file paths in FilesAnalyzed
54
$normalizedFiles = @()
55
foreach ($fa in $jsonContent.FilesAnalyzed) {
56
- $normalizedFiles += ($fa.File -Split '999.0.0')[-1].Replace('\', '/').TrimStart('/').TrimEnd('/')
+ $normalizedFiles += ($fa -Split '999.0.0')[-1].Replace('\', '/').TrimStart('/').TrimEnd('/')
57
}
58
$jsonContent.FilesAnalyzed = $normalizedFiles
59
@@ -236,8 +236,7 @@ LogGroup 'Set step summary' {
236
Details "Files analyzed [$($codeCoverage.FilesAnalyzedCount)]" {
237
Paragraph {
238
$codeCoverage.FilesAnalyzed | ForEach-Object {
239
- $file = ConvertTo-RelativePath $_
240
- Write-Output "- $file"
+ Write-Output "- $_"
241
242
243
0 commit comments