From 81286b8912f2061a8a7e98d2ac87379e5237cb20 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Wed, 9 Nov 2016 14:29:00 +0100 Subject: [PATCH] Fix chdir argument to be 'path' --- lib/ansible/modules/extras/system/make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/system/make.py b/lib/ansible/modules/extras/system/make.py index 41aa4faf28a..46b0c453902 100644 --- a/lib/ansible/modules/extras/system/make.py +++ b/lib/ansible/modules/extras/system/make.py @@ -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