mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 17:23:09 +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" )
|
||||
{
|
||||
New-Item -ItemType directory -Path $path
|
||||
New-Item -ItemType directory -Path $path | Out-Null
|
||||
$result.changed = $TRUE
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user