Skip to content

Commit 400648b

Browse files
author
James Brundage
committedFeb 19, 2024·
feat: Adding PipeScript Factor to Build Summary ( Fixes #914 )
Writing as formula
1 parent fe27430 commit 400648b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎Commands/PipeScript/Export-PipeScript.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -484,8 +484,8 @@ function Export-Pipescript {
484484
$pipeScriptFactor = [Math]::round([double]$TotalOutputFileLength/[double]$TotalInputFileLength,4)
485485

486486
if ($env:GITHUB_STEP_SUMMARY) {
487-
"> ${kbIn}kb Input, ${kbOut}kb : PipeScript Factor: $pipeScriptFactor" |
488-
Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY
487+
"> ${kbOut}kb Output / ${kbIn}kb Input = $pipeScriptFactor PipeScript Factor" |
488+
Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY
489489
}
490490

491491
"$([Math]::Round($TotalInputFileLength / 1kb)) kb input"

0 commit comments

Comments
 (0)
Please sign in to comment.