diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-09-14 15:01:28 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-09-15 17:47:50 +0200 |
commit | d936c49d532eaf6c4a5b8981765066cbc0b5a829 (patch) | |
tree | 6d358c3abd45affcc767d43504c594c490f32f28 /tools/prebuilt.py | |
parent | 2d20ac831922d3b73406ac04b2bc6f75fc55036d (diff) |
tools: consistently use 'sys.executable' instead of 'python' (#2950)
Diffstat (limited to 'tools/prebuilt.py')
-rw-r--r-- | tools/prebuilt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/prebuilt.py b/tools/prebuilt.py index 218ffae3c..f5e6c3e42 100644 --- a/tools/prebuilt.py +++ b/tools/prebuilt.py @@ -7,7 +7,7 @@ from third_party import tp, google_env def download_prebuilt(sha1_file): run([ - "python", + sys.executable, tp('depot_tools/download_from_google_storage.py'), '--platform=' + sys.platform, '--no_auth', |