mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-16 20:20:51 +01:00
Fix error in exec_util.py.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1667 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
da87cf449d
commit
7511f1e921
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user