We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 301c4bc + f7448b1 commit 79fbe42Copy full SHA for 79fbe42
backup_github_repositories.ps1
@@ -204,6 +204,11 @@ ForEach ($repository in $repositories) {
204
205
Write-Host "[$($repository.full_name)] Starting backup to ${directory}..." -ForegroundColor "DarkYellow"
206
Start-Job $scriptBlock -ArgumentList $repository.full_name, $directory | Out-Null
207
+
208
+ # Give the job some time to start.
209
+ $warmUpTimeoutInMilliseconds = 50
210
+ Start-Sleep -Milliseconds $warmUpTimeoutInMilliseconds
211
212
break
213
}
214
0 commit comments