Fix for ansible modules core 2147
This commit is contained in:
parent
3a9d046f96
commit
833bf77be1
1 changed files with 2 additions and 5 deletions
|
@ -71,18 +71,15 @@ If (Test-Path $path)
|
|||
}
|
||||
Else
|
||||
{
|
||||
# Only files have the .Directory attribute.
|
||||
If ( $state -eq "directory" -and $fileinfo.Directory )
|
||||
If ( $state -eq "directory" -and -not $fileinfo.PsIsContainer )
|
||||
{
|
||||
Fail-Json (New-Object psobject) "path is not a directory"
|
||||
}
|
||||
|
||||
# Only files have the .Directory attribute.
|
||||
If ( $state -eq "file" -and -not $fileinfo.Directory )
|
||||
If ( $state -eq "file" -and $fileinfo.PsIsContainer )
|
||||
{
|
||||
Fail-Json (New-Object psobject) "path is not a file"
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Else
|
||||
|
|
Loading…
Reference in a new issue