mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
puppet: fix manifest whitespace
There was a space missing before the manifest path causing issues like: "invalid option: --noop/test.pp"
This commit is contained in:
parent
8d7c830226
commit
6ed7f0658a
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ def main():
|
||||||
if p['execute']:
|
if p['execute']:
|
||||||
cmd += " --execute '%s'" % p['execute']
|
cmd += " --execute '%s'" % p['execute']
|
||||||
else:
|
else:
|
||||||
cmd += shlex_quote(p['manifest'])
|
cmd += " %s" % shlex_quote(p['manifest'])
|
||||||
if p['summarize']:
|
if p['summarize']:
|
||||||
cmd += " --summarize"
|
cmd += " --summarize"
|
||||||
if p['debug']:
|
if p['debug']:
|
||||||
|
|
Loading…
Reference in a new issue