Skip to content

Commit

Permalink
AU: Added UpdateTimeout among options
Browse files Browse the repository at this point in the history
  • Loading branch information
majkinetor committed Oct 22, 2016
1 parent 119ca05 commit ccdd722
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions update_all.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ccdd722

Please sign in to comment.