depot_tools: Use vpython to execute fetch.

Bug: 1002153
Change-Id: I11286bebc23bedada239d6ddb8ebb86207a41485
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1815707
Reviewed-by: Anthony Polito <apolito@google.com>
Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
Auto-Submit: Edward Lesmes <ehmaldonado@chromium.org>
This commit is contained in:
Edward Lemur
2019-09-24 21:51:47 +00:00
committed by Commit Bot
parent 4c707a2c53
commit 028367fe4a
3 changed files with 7 additions and 3 deletions

6
fetch
View File

@@ -5,4 +5,8 @@
base_dir=$(dirname "$0")
PYTHONDONTWRITEBYTECODE=1 exec python "$base_dir/fetch.py" "$@"
# Ensure that "depot_tools" is somewhere in PATH so this tool can be used
# standalone, but allow other PATH manipulations to take priority.
PATH=$PATH:$base_dir
PYTHONDONTWRITEBYTECODE=1 exec vpython "$base_dir/fetch.py" "$@"