From ccdd7223e121693bf456b618ea81937957e0f734 Mon Sep 17 00:00:00 2001 From: Miodrag Milic Date: Sat, 22 Oct 2016 13:23:10 +0200 Subject: [PATCH] AU: Added UpdateTimeout among options --- update_all.ps1 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/update_all.ps1 b/update_all.ps1 index 82ebe4256f9..6719acee173 100644 --- a/update_all.ps1 +++ b/update_all.ps1 @@ -5,10 +5,11 @@ param([string] $Name, [string] $ForcedPackages, [string] $Root = "$PSScriptRoot\ if (Test-Path $PSScriptRoot/update_vars.ps1) { . $PSScriptRoot/update_vars.ps1 } $Options = [ordered]@{ - Timeout = 100 #Connection timeout in seconds - Threads = 10 #Number of background jobs to use - Push = $Env:au_Push -eq 'true' #Push to chocolatey - PluginPath = '' #Path to user plugins + Timeout = 100 #Connection timeout in seconds + UpdateTimeout = 1200 #Update timeout in seconds + Threads = 10 #Number of background jobs to use + Push = $Env:au_Push -eq 'true' #Push to chocolatey + PluginPath = '' #Path to user plugins Report = @{ Type = 'markdown' #Report type: markdown or text