mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
fix JSON junk in win_file state=directory case (#5427)
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user