Skip to content

Commit

Permalink
refactor(ps): wsl_certs_add - update Uris
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonos committed Oct 7, 2023
1 parent 483ab0f commit 21dbc93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wsl/wsl_certs_add.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $Distro = 'Ubuntu'
# :install certificates into specified distro
wsl/wsl_certs_add.ps1 $Distro
# :specify custom Uri
$Uris = @('pypi.org', 'www.python.org')
$Uris = @('pypi.org', 'login.microsoftonline.com')
wsl/wsl_certs_add.ps1 $Distro -u $Uris
#>
[CmdletBinding()]
Expand All @@ -25,7 +25,7 @@ param (
[string]$Distro,

[ValidateNotNullOrEmpty()]
[string[]]$Uris = @('github.com', 'login.microsoftonline.com')
[string[]]$Uris = @('github.com', 'www.powershellgallery.com')
)

begin {
Expand Down

0 comments on commit 21dbc93

Please sign in to comment.