From 08388fb31b96655f0efecd40d01b614284530027 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Fri, 28 Oct 2016 09:34:09 -0700 Subject: fix JSON junk in win_file state=directory case (cherry picked from commit fdf92ade263474ddde48ddc306fd56de47e610ec) --- windows/win_file.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/win_file.ps1 b/windows/win_file.ps1 index 958f9f04..e064c5c6 100644 --- a/windows/win_file.ps1 +++ b/windows/win_file.ps1 @@ -102,7 +102,7 @@ Else If ( $state -eq "directory" ) { - New-Item -ItemType directory -Path $path + New-Item -ItemType directory -Path $path | Out-Null $result.changed = $TRUE } -- cgit v1.2.1