We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2054f20 commit cc46ba4Copy full SHA for cc46ba4
src/ci/scripts/free-disk-space-windows.ps1
@@ -31,4 +31,5 @@ foreach ($job in Get-Job) {
31
Get-Volume | Out-String | Write-Output
32
33
$saved = ($(Get-Volume C).SizeRemaining - $available) / 1gb
34
-Write-Output "total space saved $saved GB"
+$savedRounded = [math]::Round($saved, 3)
35
+Write-Output "total space saved: $savedRounded GB"
0 commit comments