File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ jobs:
101
101
- name : Diskspace
102
102
shell : pwsh
103
103
run : |
104
- Get-Volume > '\\.\CON'
104
+ Get-Volume | Out-String | Write-Host
105
105
#diskusage /t:500 C:\
106
106
$dirs = 'C:\Windows\Installer', 'C:\Program Files\LLVM\bin',
107
107
'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm',
@@ -112,7 +112,7 @@ jobs:
112
112
'C:\Program Files\PostgreSQL', 'C:\Program Files\Unity Hub', 'C:\ProgramData\chocolatey',
113
113
'C:\ProgramData\Package Cache', 'C:\Strawberry', 'C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk'
114
114
Remove-Item -Recurse -Force -ErrorAction Continue $dirs
115
- Get-Volume > '\\.\CON'
115
+ Get-Volume | Out-String | Write-Host
116
116
exit 1
117
117
- name : Install cargo in AWS CodeBuild
118
118
if : matrix.codebuild
You can’t perform that action at this time.
0 commit comments