[molecule.specs.plugins] builtin_plugin: fix shlex usage
This commit is contained in:
@@ -587,7 +587,7 @@ class IsoHandler(GenericExecutionStep, BuiltinHandlerMixin):
|
||||
)
|
||||
)
|
||||
# make shell interpreter happy
|
||||
args = shlex.split(' '.join(args))
|
||||
args = shlex.split(' '.join(args).encode("utf-8"))
|
||||
rc = molecule.utils.exec_cmd(args)
|
||||
if rc != 0:
|
||||
self._output.output("[%s|%s] %s: %s" % (
|
||||
|
||||
Reference in New Issue
Block a user