[vcpkg-ci] Do not delete log files

This commit is contained in:
Robert Schumacher 2017-05-25 18:15:05 -07:00
parent d794a6287a
commit e288a87b9f

View File

@ -6,7 +6,7 @@ New-Item -type file downloads\AlwaysAllowDownloads -errorAction SilentlyContinue
if (-not $?) { throw $? }
# Clear out any intermediate files from the previous build
Get-ChildItem buildtrees/*/* | ? Name -ne "src" | Remove-Item -Recurse -Force
Get-ChildItem buildtrees/*/* | ? { $_.Name -ne "src" -and $_.Extension -ne ".log"} | Remove-Item -Recurse -Force
# Purge any outdated packages
./vcpkg remove --outdated --recurse