Fix chdir argument to be 'path'

This commit is contained in:
Michael Scherer 2016-11-09 14:29:00 +01:00 committed by Matt Clay
parent e1c0d2dd09
commit 81286b8912

View file

@ -101,7 +101,7 @@ def main():
argument_spec=dict(
target=dict(required=False, default=None, type='str'),
params=dict(required=False, default=None, type='dict'),
chdir=dict(required=True, default=None, type='str'),
chdir=dict(required=True, default=None, type='path'),
),
)
# Build up the invocation of `make` we are going to use