From ed342e8ce339f38315bf09c71a0073e6277e95c9 Mon Sep 17 00:00:00 2001 From: Morgan Kesler Date: Sun, 22 Oct 2017 17:18:00 -0400 Subject: [PATCH] Remove toLower on source (#31983) Having this here breaks any source URLs that require case sensitivity. --- lib/ansible/modules/windows/win_chocolatey.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/ansible/modules/windows/win_chocolatey.ps1 b/lib/ansible/modules/windows/win_chocolatey.ps1 index 1bc1242d72..170e97cdb8 100644 --- a/lib/ansible/modules/windows/win_chocolatey.ps1 +++ b/lib/ansible/modules/windows/win_chocolatey.ps1 @@ -39,10 +39,6 @@ $result = @{ changed = $false } -if ($source) { - $source = $source.Tolower() -} - if ($upgrade) { Add-DeprecationWarning -obj $result -message "Parameter upgrade=yes is replaced with state=latest" -version 2.6