fix JSON junk in win_file state=directory case (#5427)

pull/18777/head
Matt Davis 9 years ago committed by Matt Clay
parent f6676f4957
commit 2c216cdf35

@ -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
}

Loading…
Cancel
Save