Fix mirror PowerShell script (try 6) (#152)

This commit is contained in:
Nick Banks 2020-02-17 13:04:21 -08:00 коммит произвёл GitHub
Родитель edc83b7f31
Коммит 4f6fd48179
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -33,6 +33,10 @@ git remote add azdo-mirror "https://nibanks:$Env:AzDO_PAT@mscodehub.visualstudio
git reset --hard origin/$Branch
# Push to the AzDO repo.
git push azdo-mirror $Branch
try {
git push azdo-mirror $Branch
} catch {
Write-Host "Supressing exception while running 'git push'"
}
Write-Host "Successfully mirrored latest changes"