Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Side by Side Diff: python_git_runner.sh

Issue 181043018: Add git thaw/freeze to depot_tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@git_map
Patch Set: rebase Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« git_freezer.py ('K') | « git_freezer.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 ## This file is designed to be sourced from a bash script whose name takes the 6 ## This file is designed to be sourced from a bash script whose name takes the
7 ## form 'git-sub-command'. This script will then instead invoke 'git_sub_command .py' 7 ## form 'git-sub-command'. This script will then instead invoke 'git_sub_command .py'
8 ## correctly under mingw as well as posix-ey systems, passing along all other 8 ## correctly under mingw as well as posix-ey systems, passing along all other
9 ## command line flags. 9 ## command line flags.
10 10
11 ## Example: 11 ## Example:
12 ## echo ". python_git_runner.sh" > git-foo-command 12 ## echo ". python_git_runner.sh" > git-foo-command
13 ## ./git-foo-command #=> runs `python git_foo_command.py` 13 ## ./git-foo-command #=> runs `python git_foo_command.py`
14 14
15 OUTPUT="$(uname | grep 'MINGW')" 15 OUTPUT="$(uname | grep 'MINGW')"
16 MINGW=$? 16 MINGW=$?
17 17
18 BASE="$(basename "$0")" 18 BASE="$(basename "$0")"
19 SCRIPT="${BASE//-/_}.py" 19 SCRIPT="${SCRIPT-${BASE//-/_}.py}"
20 20
21 if [ $MINGW = 0 ]; then 21 if [ $MINGW = 0 ]; then
22 base_dir="${0%\\*}" 22 base_dir="${0%\\*}"
23 else 23 else
24 base_dir=$(dirname "$0") 24 base_dir=$(dirname "$0")
25 fi 25 fi
26 26
27 if [ -e "$base_dir/python.bat" -a $MINGW = 0 ]; then 27 if [ -e "$base_dir/python.bat" -a $MINGW = 0 ]; then
28 PYTHONDONTWRITEBYTECODE=1 cmd.exe //c "$base_dir\\python.bat" "$base_dir\\$SCR IPT" "$@" 28 PYTHONDONTWRITEBYTECODE=1 cmd.exe //c "$base_dir\\python.bat" "$base_dir\\$SCR IPT" "$@"
29 else 29 else
30 PYTHONDONTWRITEBYTECODE=1 exec "$base_dir/$SCRIPT" "$@" 30 PYTHONDONTWRITEBYTECODE=1 exec "$base_dir/$SCRIPT" "$@"
31 fi 31 fi
OLDNEW
« git_freezer.py ('K') | « git_freezer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698