Skip to content

Commit cc46ba4

Browse files
Update src/ci/scripts/free-disk-space-windows.ps1
Co-authored-by: Marco Ieni <[email protected]>
1 parent 2054f20 commit cc46ba4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ci/scripts/free-disk-space-windows.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ foreach ($job in Get-Job) {
3131
Get-Volume | Out-String | Write-Output
3232

3333
$saved = ($(Get-Volume C).SizeRemaining - $available) / 1gb
34-
Write-Output "total space saved $saved GB"
34+
$savedRounded = [math]::Round($saved, 3)
35+
Write-Output "total space saved: $savedRounded GB"

0 commit comments

Comments
 (0)