[email protected] | 3bb0d6f | 2010-11-15 17:01:52 | [diff] [blame] | 1 | #!/usr/bin/env bash |
[email protected] | fb2b8eb | 2009-04-23 21:03:42 | [diff] [blame] | 2 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
3 | # Use of this source code is governed by a BSD-style license that can be | ||||
4 | # found in the LICENSE file. | ||||
5 | |||||
[email protected] | fb2b8eb | 2009-04-23 21:03:42 | [diff] [blame] | 6 | base_dir=$(dirname "$0") |
[email protected] | 522ca09 | 2009-06-17 18:35:18 | [diff] [blame] | 7 | |
Oleh Prypin | 684313d | 2018-10-03 18:02:12 | [diff] [blame] | 8 | if [[ "#grep#fetch#cleanup#diff#setdep#" != *"#$1#"* ]]; then |
[email protected] | 69b6758 | 2014-11-25 23:34:41 | [diff] [blame] | 9 | "$base_dir"/update_depot_tools "$@" |
[email protected] | 3466b0d | 2016-04-04 19:50:20 | [diff] [blame] | 10 | case $? in |
11 | 123) | ||||
12 | # msys environment was upgraded, need to quit. | ||||
13 | exit 0 | ||||
14 | ;; | ||||
15 | 0) | ||||
16 | ;; | ||||
17 | *) | ||||
18 | exit $? | ||||
19 | esac | ||||
[email protected] | 3addce3 | 2012-11-08 23:02:13 | [diff] [blame] | 20 | fi |
[email protected] | 522ca09 | 2009-06-17 18:35:18 | [diff] [blame] | 21 | |
[email protected] | 405b87e | 2015-11-12 18:08:34 | [diff] [blame] | 22 | PYTHONDONTWRITEBYTECODE=1 exec python "$base_dir/gclient.py" "$@" |