Fix mirror PowerShell Script (try 2) (#148)

This commit is contained in:
Nick Banks 2020-02-17 10:48:44 -08:00 коммит произвёл GitHub
Родитель 22805951c1
Коммит 280196626c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -35,7 +35,7 @@ git reset --hard origin/$Branch
# Push to the AzDO repo.
$Result = (git push azdo-mirror $Branch)
if ($Result.Contains("Head is now at")) {
if (($Result -as [String]).Contains("Head is now at")) {
Write-Host "Successfully mirrored latest changes to https://mscodehub.visualstudio.com/msquic/_git/msquic"
} else {
Write-Error $Result