Skip to content

Commit

Permalink
added new AU options
Browse files Browse the repository at this point in the history
  • Loading branch information
majkinetor committed May 16, 2018
1 parent 498f659 commit 30d9128
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion update_all.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ $Options = [ordered]@{
)
#RepeatSleep = 250 #How much to sleep between repeats in seconds, by default 0
#RepeatCount = 2 #How many times to repeat on errors, by default 1

#NoCheckChocoVersion = $true #Turn on this switch for all packages

Report = @{
Type = 'markdown' #Report type: markdown or text
Expand Down Expand Up @@ -77,6 +79,7 @@ $Options = [ordered]@{
Mail = if ($Env:mail_user) {
@{
To = $Env:mail_user
From = $Env:mail_from
Server = $Env:mail_server
UserName = $Env:mail_user
Password = $Env:mail_pass
Expand All @@ -103,7 +106,8 @@ $Options = [ordered]@{
}

if ($ForcedPackages) { Write-Host "FORCED PACKAGES: $ForcedPackages" }
$global:au_Root = $Root #Path to the AU packages
$global:au_Root = $Root #Path to the AU packages
$global:au_GalleryUrl = '' #URL to package gallery, leave empty for Chocolatey Gallery
$global:info = updateall -Name $Name -Options $Options

#Uncomment to fail the build on AppVeyor on any package error
Expand Down

0 comments on commit 30d9128

Please sign in to comment.