Upload separate PGO for localhost vs remote (#731)

Closes #727
This commit is contained in:
Thad House 2020-08-17 13:42:08 -07:00 коммит произвёл GitHub
Родитель d454f86798
Коммит 2263745042
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -411,7 +411,11 @@ try {
if ($PGO) {
Write-Host "Saving msquic.pgd out for publishing."
Copy-Item "$LocalExePath\msquic.pgd" $OutputDir
if ($Local) {
Copy-Item "$LocalExePath\msquic.pgd" "$OutputDir\msquic_local.pgd"
} else {
Copy-Item "$LocalExePath\msquic.pgd" $OutputDir
}
}
} finally {