mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 22:30:22 -07:00
fix breakage from new recursive=True arg to chmod
This commit is contained in:
parent
80e7fbff75
commit
4241106ad2
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ class ShellModule(object):
|
||||||
path = self._unquote(path)
|
path = self._unquote(path)
|
||||||
return path.endswith('/') or path.endswith('\\')
|
return path.endswith('/') or path.endswith('\\')
|
||||||
|
|
||||||
def chmod(self, mode, path):
|
def chmod(self, mode, path, recursive=True):
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
def remove(self, path, recurse=False):
|
def remove(self, path, recurse=False):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue