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 80ad50f commit 18fc82eCopy full SHA for 18fc82e
extension/BuildPhpExtension/private/Invoke-CleanupTempFIles.ps1
@@ -7,9 +7,9 @@ Function Invoke-CleanupTempFiles {
7
$tempFiles = $newSystemFiles + $newUserFiles
8
if($tempFiles.Count -gt 0) {
9
Write-Host "Cleaning up temporary files"
10
- }
11
- $newSystemFiles + $newUserFiles | ForEach-Object {
12
- Write-Host "Removing $($_.FullName)"
13
- Remove-Item -Path $_.FullName -Force
+ $tempFiles | ForEach-Object {
+ Write-Host "Removing $($_.FullName)"
+ Remove-Item -Path $_.FullName -Force
+ }
14
}
15
0 commit comments