Commit f6e3b7fb authored by Mirko Bonadei's avatar Mirko Bonadei Committed by LUCI CQ

Switch download_from_google_storage scripts to invoke python3.

Bug: 941669
Change-Id: I65a9ca3453858c447f6533d9a3a4eade4a825aa7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2825441Reviewed-by: 's avatarDirk Pranke <dpranke@google.com>
Commit-Queue: Mirko Bonadei <mbonadei@chromium.org>
parent 5f16d6dc
......@@ -5,4 +5,4 @@
base_dir=$(dirname "$0")
PYTHONDONTWRITEBYTECODE=1 exec python "$base_dir/download_from_google_storage.py" "$@"
PYTHONDONTWRITEBYTECODE=1 exec $base_dir/python-bin/python3 "$base_dir/download_from_google_storage.py" "$@"
......@@ -9,4 +9,4 @@ setlocal
set PATH=%PATH%;%~dp0
:: Defer control.
python "%~dp0\download_from_google_storage.py" %*
%dp0\python-bin\python3.bat "%~dp0\download_from_google_storage.py" %*
#!/usr/bin/env python
#!/usr/bin/env python3
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
......
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