void/build/azure-pipelines/win32/retry.ps1
2024-09-10 19:37:36 -07:00

19 lines
230 B
PowerShell

function Retry
{
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)][scriptblock]$cmd
)
$retry = 0
while ($retry++ -lt 5) {
try {
& $cmd
return
} catch {
# noop
}
}
throw "Max retries reached"
}