1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixes #28584: modules/windows/win_get_url.ps1: Change -msg option to -message (#28585)

This commit is contained in:
Reid Wahl 2017-08-24 03:48:37 -05:00 committed by Dag Wieers
parent cd8c1c1108
commit 3026e5eb15

View file

@ -43,7 +43,7 @@ $result = @{
# If skip_certificate_validation was specified, use validate_certs
if ($skip_certificate_validation -ne $null) {
Add-DeprecationWarning -obj $result -msg "The parameter 'skip_vertificate_validation' is being replaced with 'validate_certs'" -version 2.8
Add-DeprecationWarning -obj $result -message "The parameter 'skip_certificate_validation' is being replaced with 'validate_certs'" -version 2.8
$validate_certs = -not $skip_certificate_validation
}