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:
parent
f6676f4957
commit
2c216cdf35
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue