From 9ad30acd96f505947da1fe969a3d1debf019737c Mon Sep 17 00:00:00 2001 From: Phil Date: Mon, 6 Jul 2015 13:14:18 -0500 Subject: [PATCH] changes check for src --- lib/ansible/modules/extras/windows/win_acl.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/extras/windows/win_acl.ps1 b/lib/ansible/modules/extras/windows/win_acl.ps1 index 130b17e8304..39530866c61 100644 --- a/lib/ansible/modules/extras/windows/win_acl.ps1 +++ b/lib/ansible/modules/extras/windows/win_acl.ps1 @@ -30,8 +30,8 @@ $result = New-Object psobject @{ If ($params.src) { $src = $params.src.toString() - If (-Not (Test-Path -Path $src -PathType Leaf -Or Test-Path -Path $src -PathType Container)) { - Fail-Json $result "$src is not a valid file or directory on the host" + If (-Not (Test-Path -Path $src)) { + Fail-Json $result "$src file or directory does not exist on the host" } } Else {