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

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

This commit is contained in:
Matt Davis 2016-10-28 09:39:56 -07:00 committed by Matt Clay
parent f6676f4957
commit 2c216cdf35

View file

@ -102,7 +102,7 @@ Else
If ( $state -eq "directory" ) If ( $state -eq "directory" )
{ {
New-Item -ItemType directory -Path $path New-Item -ItemType directory -Path $path | Out-Null
$result.changed = $TRUE $result.changed = $TRUE
} }