Commit 86ab878b authored by Yang Guo's avatar Yang Guo Committed by Commit Bot

Fix usage of os.path.normpath in fetch_deps.py.

TBR=machenbach@chromium.org

Bug: v8:6105
Change-Id: I52d241cfa05ee3787dda7cbdaca8b83fe7508218
Reviewed-on: https://chromium-review.googlesource.com/864043
Commit-Queue: Yang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#50536}
parent 14eec667
......@@ -84,7 +84,8 @@ def FetchDeps(v8_path):
if temporary_git:
node_common.UninitGit(v8_path)
# Clean up .gclient_entries file.
gclient_entries = os.normpath(os.path.join(v8_path, os.pardir, ".gclient_entries"))
gclient_entries = os.path.normpath(
os.path.join(v8_path, os.pardir, ".gclient_entries"))
if os.path.isfile(gclient_entries):
os.remove(gclient_entries)
......
Markdown is supported
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