Commit cdac331a authored by Michael Brüning's avatar Michael Brüning Committed by The Qt Project
Browse files

Handle exception thrown by subprocess.check_output.


The || true syntax does not work on Windows.

Also, normalize the paths to the underlying OS style.

Change-Id: Ie13d2646fe239fccb9ab7b558a6c8d56b779b206
Reviewed-by: default avatarJocelyn Turcotte <jocelyn.turcotte@digia.com>
Showing with 5 additions and 2 deletions
......@@ -51,13 +51,16 @@ def getChromiumSrcDir():
qtwebengine_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
os.chdir(qtwebengine_root)
chrome_src = subprocess.check_output("git config qtwebengine.chromiumsrcdir || true", shell=True).strip()
try:
chrome_src = subprocess.check_output("git config qtwebengine.chromiumsrcdir", shell=True).strip()
except subprocess.CalledProcessError:
chrome_src = None
os.chdir(saved_cwd)
if chrome_src:
chrome_src = os.path.join(qtwebengine_root, chrome_src)
if not chrome_src or not os.path.isdir(chrome_src):
chrome_src = os.path.join(qtwebengine_root, 'src/3rdparty/chromium')
chrome_src = os.path.normpath(os.path.join(qtwebengine_root, 'src/3rdparty/chromium'))
print 'CHROMIUM_SRC_DIR not set, falling back to ' + chrome_src
return chrome_src
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment