Skip to content
Snippets Groups Projects
Commit a2528a86 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Merge pull request #692 from mathstuf/quoted-command-lines

executable: quote arguments
parents 35cf52d1 ff9145f8
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ def streamify(arg, mode):
cmd = self.exe + list(args)
cmd_line = ' '.join(cmd)
cmd_line = "'%s'" % "' '".join(map(lambda arg: arg.replace("'", "'\"'\"'"), cmd))
tty.debug(cmd_line)
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment