puppet: fix manifest whitespace
There was a space missing before the manifest path causing issues like: "invalid option: --noop/test.pp"pull/114/head
parent
8d7c830226
commit
6ed7f0658a
|
@ -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 New Issue