mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
This reverts commitb2bfd55fd5. Reason for revert: not responsible for crbug.com/1025659 Original change's description: > Revert "depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt" > > This reverts commitbf26b167a8. > > Reason for revert: spec revert for https://bugs.chromium.org/p/chromium/issues/detail?id=1025659 > > Original change's description: > > depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt > > > > Bug: 1017812 > > Change-Id: I7013e5445ff5917fab813a54fed416d9770d2684 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1913269 > > Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> > > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > > TBR=dpranke@chromium.org,ehmaldonado@chromium.org,apolito@google.com > > # Not skipping CQ checks because original CL landed > 1 day ago. > > Bug: 1017812 > Change-Id: I8e10894a2e835c20ece7d555c21f6ce1f76528a5 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1922949 > Reviewed-by: John Budorick <jbudorick@chromium.org> > Commit-Queue: John Budorick <jbudorick@chromium.org> Bug: 1017812 Change-Id: I251c6b1a3e3a7b9ac9d21dabe745466c668a8246 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1924494 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
54 lines
1.4 KiB
Bash
Executable File
54 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 [[ $MINGW != 0 && $DEPOT_TOOLS_BOOTSTRAP_PYTHON3 != 0 ]]; then
|
|
if [[ ! -e $base_dir/python3_bin_reldir.txt ]]; then
|
|
source "$base_dir/bootstrap_python3"
|
|
bootstrap_python3
|
|
fi
|
|
PYTHON3_BIN_RELDIR="$base_dir/$(cat $base_dir/python3_bin_reldir.txt | xargs echo)"
|
|
PATH="$PYTHON3_BIN_RELDIR":"$PYTHON3_BIN_RELDIR/Scripts":"$PATH"
|
|
fi
|
|
|
|
exec "$base_dir/.cipd_bin/vpython3" "$@"
|