mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
Bug: 1008202 Change-Id: I23dd70b72089a09c2a7cdc74e2a63c135a924ebe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1825996 Reviewed-by: Anthony Polito <apolito@google.com> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> Auto-Submit: Edward Lesmes <ehmaldonado@chromium.org>
31 lines
800 B
Bash
Executable File
31 lines
800 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2009 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.
|
|
|
|
base_dir=$(dirname "$0")
|
|
|
|
if [[ "#grep#fetch#cleanup#diff#setdep#" != *"#$1#"* ]]; then
|
|
"$base_dir"/update_depot_tools "$@"
|
|
case $? in
|
|
123)
|
|
# msys environment was upgraded, need to quit.
|
|
exit 0
|
|
;;
|
|
0)
|
|
;;
|
|
*)
|
|
exit $?
|
|
esac
|
|
fi
|
|
|
|
# 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
|
|
|
|
if [[ $GCLIENT_PY3 != 1 ]]; then
|
|
PYTHONDONTWRITEBYTECODE=1 exec python "$base_dir/gclient.py" "$@"
|
|
else
|
|
PYTHONDONTWRITEBYTECODE=1 exec vpython3 "$base_dir/gclient.py" "$@"
|
|
fi
|