mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 02:31:29 +00:00
Once this is rolled out, we will no longer need to bootstrap python(3) in the vpython wrapper, only vpython itself. Bug: 1318617 Change-Id: If11b81f19d1d15eda74aae94ddc95c2997148c8e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3760318 Reviewed-by: Chenlin Fan <fancl@chromium.org> Commit-Queue: Brian Ryner <bryner@google.com> Reviewed-by: Gavin Mak <gavinmak@google.com>
55 lines
1.4 KiB
Bash
Executable File
55 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2019 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.
|
|
|
|
if [[ $VPYTHON_BYPASS == "manually managed python not supported by chrome operations" ]]
|
|
then
|
|
NEWARGS=()
|
|
while [[ $# -gt 0 ]]
|
|
do
|
|
case "$1" in
|
|
-vpython-tool*) # these tools all do something vpython related and quit
|
|
exit 0
|
|
;;
|
|
-vpython*=*) # delete any vpython-specific flag (w/ attached argument)
|
|
shift
|
|
;;
|
|
-vpython*) # delete any vpython-specific flag (w/ separate argument)
|
|
shift
|
|
shift
|
|
;;
|
|
--) # stop parsing
|
|
NEWARGS+=( "$@" )
|
|
break
|
|
;;
|
|
*) # regular arg
|
|
NEWARGS+=( "$1" )
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
exec "python3" "${NEWARGS[@]}"
|
|
fi
|
|
|
|
|
|
base_dir=$(dirname "$0")
|
|
|
|
source "$base_dir/cipd_bin_setup.sh"
|
|
cipd_bin_setup &> /dev/null
|
|
|
|
# If Python bootstrapping is not disabled, make sure Python has been
|
|
# bootstrapped and add it to the front of PATH.
|
|
if [[ $(uname -s) = MINGW* || $(uname -s) = CYGWIN* ]]; then
|
|
cmd.exe //c $0.bat "$@"
|
|
elif [[ $DEPOT_TOOLS_BOOTSTRAP_PYTHON3 != 0 ]]; then
|
|
if [[ ! -e "$base_dir/python3_bin_reldir.txt" ]]; then
|
|
source "$base_dir/bootstrap_python3"
|
|
bootstrap_python3
|
|
fi
|
|
exec "$base_dir/.cipd_bin/vpython3" "$@"
|
|
else
|
|
exec "$base_dir/.cipd_bin/vpython3" "$@"
|
|
fi
|