Fix chdir argument to be 'path'
This commit is contained in:
parent
e1c0d2dd09
commit
81286b8912
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ def main():
|
||||||
argument_spec=dict(
|
argument_spec=dict(
|
||||||
target=dict(required=False, default=None, type='str'),
|
target=dict(required=False, default=None, type='str'),
|
||||||
params=dict(required=False, default=None, type='dict'),
|
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
|
# Build up the invocation of `make` we are going to use
|
||||||
|
|
Loading…
Reference in a new issue