Fix PowerShell Script Defaults (#365)

This commit is contained in:
Nick Banks 2020-05-05 14:26:36 -07:00 коммит произвёл GitHub
Родитель 3fa74d4aa8
Коммит a10d94050a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -58,7 +58,7 @@ param (
[Parameter(Mandatory = $false)]
[ValidateSet("schannel", "openssl", "stub", "mitls")]
[string]$Tls = $null,
[string]$Tls = "",
[Parameter(Mandatory = $false)]
[switch]$DisableLogs = $false,
@ -86,7 +86,7 @@ Set-StrictMode -Version 'Latest'
$PSDefaultParameterValues['*:ErrorAction'] = 'Stop'
# Default TLS based on current platform.
if ($null -eq $Tls) {
if ("" -eq $Tls) {
if ($IsWindows) {
$Tls = "schannel"
} else {

Просмотреть файл

@ -40,7 +40,7 @@ param (
[Parameter(Mandatory = $false)]
[ValidateSet("schannel", "openssl", "stub", "mitls")]
[string]$Tls = $null,
[string]$Tls = "",
[Parameter(Mandatory = $false)]
[switch]$KeepOutputOnSuccess = $false,
@ -63,7 +63,7 @@ Set-StrictMode -Version 'Latest'
$PSDefaultParameterValues['*:ErrorAction'] = 'Stop'
# Default TLS based on current platform.
if ($null -eq $Tls) {
if ("" -eq $Tls) {
if ($IsWindows) {
$Tls = "schannel"
} else {

Просмотреть файл

@ -43,7 +43,7 @@ param (
[Parameter(Mandatory = $false)]
[ValidateSet("schannel", "openssl", "stub", "mitls")]
[string]$Tls = $null,
[string]$Tls = "",
[Parameter(Mandatory = $false)]
[Int32]$Timeout = 60000,
@ -69,7 +69,7 @@ Set-StrictMode -Version 'Latest'
$PSDefaultParameterValues['*:ErrorAction'] = 'Stop'
# Default TLS based on current platform.
if ($null -eq $Tls) {
if ("" -eq $Tls) {
if ($IsWindows) {
$Tls = "schannel"
} else {

Просмотреть файл

@ -83,7 +83,7 @@ param (
[Parameter(Mandatory = $false)]
[ValidateSet("schannel", "openssl", "stub", "mitls")]
[string]$Tls = $null,
[string]$Tls = "",
[Parameter(Mandatory = $false)]
[string]$Filter = "",
@ -132,7 +132,7 @@ Set-StrictMode -Version 'Latest'
$PSDefaultParameterValues['*:ErrorAction'] = 'Stop'
# Default TLS based on current platform.
if ($null -eq $Tls) {
if ("" -eq $Tls) {
if ($IsWindows) {
$Tls = "schannel"
} else {