Skip to content

Commit

Permalink
Format whitespace in init.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Nov 29, 2021
1 parent eb997cc commit c9ed75c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions init.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
.PARAMETER AccessToken
An optional access token for authenticating to Azure Artifacts authenticated feeds.
#>
[CmdletBinding(SupportsShouldProcess=$true)]
[CmdletBinding(SupportsShouldProcess = $true)]
Param (
[ValidateSet('repo','user','machine')]
[string]$InstallLocality='user',
[ValidateSet('repo', 'user', 'machine')]
[string]$InstallLocality = 'user',
[Parameter()]
[switch]$NoPrerequisites,
[Parameter()]
Expand Down Expand Up @@ -68,8 +68,8 @@ if (!$NoPrerequisites) {
}

# Workaround nuget credential provider bug that causes very unreliable package restores on Azure Pipelines
$env:NUGET_PLUGIN_HANDSHAKE_TIMEOUT_IN_SECONDS=20
$env:NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS=20
$env:NUGET_PLUGIN_HANDSHAKE_TIMEOUT_IN_SECONDS = 20
$env:NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS = 20

Push-Location $PSScriptRoot
try {
Expand Down

0 comments on commit c9ed75c

Please sign in to comment.