mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
normalize error message on src != dir when local
now action plugin returns same error as module
This commit is contained in:
parent
ddfab5faf1
commit
e0ed88e668
1 changed files with 5 additions and 0 deletions
|
@ -109,6 +109,11 @@ class ActionModule(ActionBase):
|
|||
if regexp is not None:
|
||||
_re = re.compile(regexp)
|
||||
|
||||
if not os.path.isdir(src):
|
||||
result['failed'] = True
|
||||
result['msg'] = "Source (%s) is not a directory" % src
|
||||
return result
|
||||
|
||||
# Does all work assembling the file
|
||||
path = self._assemble_from_fragments(src, delimiter, _re, ignore_hidden)
|
||||
|
||||
|
|
Loading…
Reference in a new issue