From 7511f1e92127c41c4e90020fdf03bf7fd3bac3a0 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 18 Apr 2014 19:03:15 +0000 Subject: [PATCH] Fix error in exec_util.py. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1667 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tools/exec_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/exec_util.py b/tools/exec_util.py index c38f67577..2692ed284 100644 --- a/tools/exec_util.py +++ b/tools/exec_util.py @@ -11,7 +11,7 @@ def exec_cmd(cmd, path): err = '' parts = cmd.split() try: - process = Popen(cmd, cwd=path, stdout=PIPE, stderr=PIPE, + process = Popen(parts, cwd=path, stdout=PIPE, stderr=PIPE, shell=(sys.platform == 'win32')) out, err = process.communicate() except IOError, (errno, strerror):