puppet: fix manifest whitespace

There was a space missing before the manifest path causing
issues like: "invalid option: --noop/test.pp"
pull/114/head
Esa Varemo 2020-04-03 23:46:42 +03:00
parent 8d7c830226
commit 6ed7f0658a
No known key found for this signature in database
GPG Key ID: 4B19278740CF4F17
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ def main():
if p['execute']:
cmd += " --execute '%s'" % p['execute']
else:
cmd += shlex_quote(p['manifest'])
cmd += " %s" % shlex_quote(p['manifest'])
if p['summarize']:
cmd += " --summarize"
if p['debug']: