From 7decd10c768c7bd4ac353b9298310924456c8365 Mon Sep 17 00:00:00 2001 From: Artem Zinenko Date: Fri, 3 Mar 2017 17:50:42 +0300 Subject: [PATCH] Fixes #22136 (#22137) --- lib/ansible/modules/windows/win_unzip.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/windows/win_unzip.ps1 b/lib/ansible/modules/windows/win_unzip.ps1 index 119fa72fa3c..7547f531bcc 100644 --- a/lib/ansible/modules/windows/win_unzip.ps1 +++ b/lib/ansible/modules/windows/win_unzip.ps1 @@ -111,6 +111,7 @@ Else { Else { Expand-Archive -Path $src -OutputPath $dest -Force } + $result.changed = $true } Catch { $err_msg = $_.Exception.Message