--- a/runtime/spawn_subprocess.py Thu Jul 29 08:25:26 2021 +0200
+++ b/runtime/spawn_subprocess.py Thu Jul 29 11:59:28 2021 +0200
@@ -7,6 +7,7 @@
from __future__ import absolute_import
@@ -104,9 +105,9 @@
if isinstance(args[0], str):
- # oversimplified splitting of arguments,
- # TODO: care about use of simple and double quotes
+ # splitting of arguments that cares about + # use of simple and double quotes + cmd = shlex.split(args[0]) elif isinstance(args[0], list) and len(args) == 1: