blob: 87e9c349b611ccba19191dc1e346e5ea4d340ce2 [file] [log] [blame]
David Pursehouse8898e2f2012-11-14 07:51:03 +09001#!/usr/bin/env python
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
3# Copyright (C) 2008 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Sarah Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
JoonCheol Parke9860722012-10-11 02:31:44 +090018import getpass
Conley Owensc9129d92012-10-01 16:12:28 -070019import imp
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -070020import netrc
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021import optparse
22import os
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070023import sys
Shawn O. Pearce3a0e7822011-09-22 17:06:41 -070024import time
Sarah Owens1f7627f2012-10-31 09:21:55 -070025try:
26 import urllib2
27except ImportError:
28 # For python3
29 import urllib.request
30else:
31 # For python2
Sarah Owens1f7627f2012-10-31 09:21:55 -070032 urllib = imp.new_module('urllib')
33 urllib.request = urllib2
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070034
Shawn O. Pearcead3193a2009-04-18 09:54:51 -070035from trace import SetTrace
Shawn O. Pearce334851e2011-09-19 08:05:31 -070036from git_command import git, GitCommand
Doug Anderson0048b692010-12-21 13:39:23 -080037from git_config import init_ssh, close_ssh
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080038from command import InteractiveCommand
39from command import MirrorSafeCommand
Shawn O. Pearceecff4f12011-11-29 15:01:33 -080040from subcmds.version import Version
Shawn O. Pearce7965f9f2008-10-29 15:20:02 -070041from editor import Editor
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070042from error import DownloadError
Shawn O. Pearce559b8462009-03-02 12:56:08 -080043from error import ManifestInvalidRevisionError
David Pursehouse0b8df7b2012-11-13 09:51:57 +090044from error import ManifestParseError
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070045from error import NoSuchProjectError
46from error import RepoChangedException
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -070047from manifest_xml import XmlManifest
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070048from pager import RunPager
49
David Pursehouse5c6eeac2012-10-11 16:44:48 +090050from subcmds import all_commands
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070051
52global_options = optparse.OptionParser(
53 usage="repo [-p|--paginate|--no-pager] COMMAND [ARGS]"
54 )
55global_options.add_option('-p', '--paginate',
56 dest='pager', action='store_true',
57 help='display command output in the pager')
58global_options.add_option('--no-pager',
59 dest='no_pager', action='store_true',
60 help='disable the pager')
Shawn O. Pearce0ed2bd12009-03-09 18:26:31 -070061global_options.add_option('--trace',
62 dest='trace', action='store_true',
63 help='trace git command execution')
Shawn O. Pearce3a0e7822011-09-22 17:06:41 -070064global_options.add_option('--time',
65 dest='time', action='store_true',
66 help='time repo command execution')
Shawn O. Pearce47c1a632009-03-02 18:24:23 -080067global_options.add_option('--version',
68 dest='show_version', action='store_true',
69 help='display this version of repo')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070070
71class _Repo(object):
72 def __init__(self, repodir):
73 self.repodir = repodir
74 self.commands = all_commands
Mike Lockwood2bf9db02009-07-14 15:23:39 -040075 # add 'branch' as an alias for 'branches'
76 all_commands['branch'] = all_commands['branches']
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070077
78 def _Run(self, argv):
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -040079 result = 0
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070080 name = None
81 glob = []
82
Sarah Owensa6053d52012-11-01 13:36:50 -070083 for i in range(len(argv)):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070084 if not argv[i].startswith('-'):
85 name = argv[i]
86 if i > 0:
87 glob = argv[:i]
88 argv = argv[i + 1:]
89 break
90 if not name:
91 glob = argv
92 name = 'help'
93 argv = []
David Pursehouse8a68ff92012-09-24 12:15:13 +090094 gopts, _gargs = global_options.parse_args(glob)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070095
Shawn O. Pearce0ed2bd12009-03-09 18:26:31 -070096 if gopts.trace:
Shawn O. Pearcead3193a2009-04-18 09:54:51 -070097 SetTrace()
Shawn O. Pearce47c1a632009-03-02 18:24:23 -080098 if gopts.show_version:
99 if name == 'help':
100 name = 'version'
101 else:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700102 print('fatal: invalid usage of --version', file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400103 return 1
Shawn O. Pearce47c1a632009-03-02 18:24:23 -0800104
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700105 try:
106 cmd = self.commands[name]
107 except KeyError:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700108 print("repo: '%s' is not a repo command. See 'repo help'." % name,
109 file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400110 return 1
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700111
112 cmd.repodir = self.repodir
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700113 cmd.manifest = XmlManifest(cmd.repodir)
Shawn O. Pearce7965f9f2008-10-29 15:20:02 -0700114 Editor.globalConfig = cmd.manifest.globalConfig
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700115
Shawn O. Pearcec95583b2009-03-03 17:47:06 -0800116 if not isinstance(cmd, MirrorSafeCommand) and cmd.manifest.IsMirror:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700117 print("fatal: '%s' requires a working directory" % name,
118 file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400119 return 1
Shawn O. Pearcec95583b2009-03-03 17:47:06 -0800120
Shawn O. Pearcedb45da12009-04-18 13:49:13 -0700121 copts, cargs = cmd.OptionParser.parse_args(argv)
122
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700123 if not gopts.no_pager and not isinstance(cmd, InteractiveCommand):
124 config = cmd.manifest.globalConfig
125 if gopts.pager:
126 use_pager = True
127 else:
128 use_pager = config.GetBoolean('pager.%s' % name)
129 if use_pager is None:
Shawn O. Pearcedb45da12009-04-18 13:49:13 -0700130 use_pager = cmd.WantPager(copts)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700131 if use_pager:
132 RunPager(config)
133
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700134 try:
Shawn O. Pearce3a0e7822011-09-22 17:06:41 -0700135 start = time.time()
136 try:
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400137 result = cmd.Execute(copts, cargs)
Shawn O. Pearce3a0e7822011-09-22 17:06:41 -0700138 finally:
139 elapsed = time.time() - start
140 hours, remainder = divmod(elapsed, 3600)
141 minutes, seconds = divmod(remainder, 60)
142 if gopts.time:
143 if hours == 0:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700144 print('real\t%dm%.3fs' % (minutes, seconds), file=sys.stderr)
Shawn O. Pearce3a0e7822011-09-22 17:06:41 -0700145 else:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700146 print('real\t%dh%dm%.3fs' % (hours, minutes, seconds),
147 file=sys.stderr)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700148 except DownloadError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700149 print('error: %s' % str(e), file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400150 return 1
Sarah Owensa5be53f2012-09-09 15:37:57 -0700151 except ManifestInvalidRevisionError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700152 print('error: %s' % str(e), file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400153 return 1
Sarah Owensa5be53f2012-09-09 15:37:57 -0700154 except NoSuchProjectError as e:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700155 if e.name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700156 print('error: project %s not found' % e.name, file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700157 else:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700158 print('error: no project in current directory', file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400159 return 1
160
161 return result
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700162
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700163def _MyRepoPath():
164 return os.path.dirname(__file__)
165
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700166def _MyWrapperPath():
167 return os.path.join(os.path.dirname(__file__), 'repo')
168
Conley Owensc9129d92012-10-01 16:12:28 -0700169_wrapper_module = None
170def WrapperModule():
171 global _wrapper_module
172 if not _wrapper_module:
173 _wrapper_module = imp.load_source('wrapper', _MyWrapperPath())
174 return _wrapper_module
175
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700176def _CurrentWrapperVersion():
Conley Owensc9129d92012-10-01 16:12:28 -0700177 return WrapperModule().VERSION
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700178
179def _CheckWrapperVersion(ver, repo_path):
180 if not repo_path:
181 repo_path = '~/bin/repo'
182
183 if not ver:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700184 print('no --wrapper-version argument', file=sys.stderr)
David Pursehouse8a68ff92012-09-24 12:15:13 +0900185 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700186
187 exp = _CurrentWrapperVersion()
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900188 ver = tuple(map(int, ver.split('.')))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700189 if len(ver) == 1:
190 ver = (0, ver[0])
191
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900192 exp_str = '.'.join(map(str, exp))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700193 if exp[0] > ver[0] or ver < (0, 4):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700194 print("""
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700195!!! A new repo command (%5s) is available. !!!
196!!! You must upgrade before you can continue: !!!
197
198 cp %s %s
Sarah Owenscecd1d82012-11-01 22:59:27 -0700199""" % (exp_str, _MyWrapperPath(), repo_path), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700200 sys.exit(1)
201
202 if exp > ver:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700203 print("""
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700204... A new repo command (%5s) is available.
205... You should upgrade soon:
206
207 cp %s %s
Sarah Owenscecd1d82012-11-01 22:59:27 -0700208""" % (exp_str, _MyWrapperPath(), repo_path), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700209
Mickaël Salaün2f6ab7f2012-09-30 00:37:55 +0200210def _CheckRepoDir(repo_dir):
211 if not repo_dir:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700212 print('no --repo-dir argument', file=sys.stderr)
David Pursehouse8a68ff92012-09-24 12:15:13 +0900213 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700214
215def _PruneOptions(argv, opt):
216 i = 0
217 while i < len(argv):
218 a = argv[i]
219 if a == '--':
220 break
221 if a.startswith('--'):
222 eq = a.find('=')
223 if eq > 0:
224 a = a[0:eq]
225 if not opt.has_option(a):
226 del argv[i]
227 continue
228 i += 1
229
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700230_user_agent = None
231
232def _UserAgent():
233 global _user_agent
234
235 if _user_agent is None:
236 py_version = sys.version_info
237
238 os_name = sys.platform
239 if os_name == 'linux2':
240 os_name = 'Linux'
241 elif os_name == 'win32':
242 os_name = 'Win32'
243 elif os_name == 'cygwin':
244 os_name = 'Cygwin'
245 elif os_name == 'darwin':
246 os_name = 'Darwin'
247
248 p = GitCommand(
249 None, ['describe', 'HEAD'],
250 cwd = _MyRepoPath(),
251 capture_stdout = True)
252 if p.Wait() == 0:
253 repo_version = p.stdout
254 if len(repo_version) > 0 and repo_version[-1] == '\n':
255 repo_version = repo_version[0:-1]
256 if len(repo_version) > 0 and repo_version[0] == 'v':
257 repo_version = repo_version[1:]
258 else:
259 repo_version = 'unknown'
260
261 _user_agent = 'git-repo/%s (%s) git/%s Python/%d.%d.%d' % (
262 repo_version,
263 os_name,
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900264 '.'.join(map(str, git.version_tuple())),
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700265 py_version[0], py_version[1], py_version[2])
266 return _user_agent
267
Sarah Owens1f7627f2012-10-31 09:21:55 -0700268class _UserAgentHandler(urllib.request.BaseHandler):
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700269 def http_request(self, req):
270 req.add_header('User-Agent', _UserAgent())
271 return req
272
273 def https_request(self, req):
274 req.add_header('User-Agent', _UserAgent())
275 return req
276
JoonCheol Parke9860722012-10-11 02:31:44 +0900277def _AddPasswordFromUserInput(handler, msg, req):
278 # If repo could not find auth info from netrc, try to get it from user input
279 url = req.get_full_url()
280 user, password = handler.passwd.find_user_password(None, url)
281 if user is None:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700282 print(msg)
JoonCheol Parke9860722012-10-11 02:31:44 +0900283 try:
284 user = raw_input('User: ')
285 password = getpass.getpass()
286 except KeyboardInterrupt:
287 return
288 handler.passwd.add_password(None, url, user, password)
289
Sarah Owens1f7627f2012-10-31 09:21:55 -0700290class _BasicAuthHandler(urllib.request.HTTPBasicAuthHandler):
JoonCheol Parke9860722012-10-11 02:31:44 +0900291 def http_error_401(self, req, fp, code, msg, headers):
292 _AddPasswordFromUserInput(self, msg, req)
Sarah Owens1f7627f2012-10-31 09:21:55 -0700293 return urllib.request.HTTPBasicAuthHandler.http_error_401(
JoonCheol Parke9860722012-10-11 02:31:44 +0900294 self, req, fp, code, msg, headers)
295
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700296 def http_error_auth_reqed(self, authreq, host, req, headers):
297 try:
Shawn O. Pearcedf5ee522011-10-11 14:05:21 -0700298 old_add_header = req.add_header
299 def _add_header(name, val):
300 val = val.replace('\n', '')
301 old_add_header(name, val)
302 req.add_header = _add_header
Sarah Owens1f7627f2012-10-31 09:21:55 -0700303 return urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed(
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700304 self, authreq, host, req, headers)
305 except:
Shawn O. Pearcedf5ee522011-10-11 14:05:21 -0700306 reset = getattr(self, 'reset_retry_count', None)
307 if reset is not None:
308 reset()
Shawn O. Pearceb6605392011-10-11 15:58:07 -0700309 elif getattr(self, 'retried', None):
310 self.retried = 0
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700311 raise
312
Sarah Owens1f7627f2012-10-31 09:21:55 -0700313class _DigestAuthHandler(urllib.request.HTTPDigestAuthHandler):
JoonCheol Parke9860722012-10-11 02:31:44 +0900314 def http_error_401(self, req, fp, code, msg, headers):
315 _AddPasswordFromUserInput(self, msg, req)
Sarah Owens1f7627f2012-10-31 09:21:55 -0700316 return urllib.request.HTTPDigestAuthHandler.http_error_401(
JoonCheol Parke9860722012-10-11 02:31:44 +0900317 self, req, fp, code, msg, headers)
318
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800319 def http_error_auth_reqed(self, auth_header, host, req, headers):
320 try:
321 old_add_header = req.add_header
322 def _add_header(name, val):
323 val = val.replace('\n', '')
324 old_add_header(name, val)
325 req.add_header = _add_header
Sarah Owens1f7627f2012-10-31 09:21:55 -0700326 return urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed(
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800327 self, auth_header, host, req, headers)
328 except:
329 reset = getattr(self, 'reset_retry_count', None)
330 if reset is not None:
331 reset()
332 elif getattr(self, 'retried', None):
333 self.retried = 0
334 raise
335
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700336def init_http():
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700337 handlers = [_UserAgentHandler()]
338
Sarah Owens1f7627f2012-10-31 09:21:55 -0700339 mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700340 try:
341 n = netrc.netrc()
342 for host in n.hosts:
343 p = n.hosts[host]
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800344 mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
345 mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700346 except netrc.NetrcParseError:
347 pass
Shawn O. Pearce7b947de2011-09-23 11:50:31 -0700348 except IOError:
349 pass
Shawn O. Pearcefab96c62011-10-11 12:00:38 -0700350 handlers.append(_BasicAuthHandler(mgr))
Xiaodong Xuae0a36c2012-01-31 11:10:09 +0800351 handlers.append(_DigestAuthHandler(mgr))
Shawn O. Pearcebd0312a2011-09-19 10:04:23 -0700352
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700353 if 'http_proxy' in os.environ:
354 url = os.environ['http_proxy']
Sarah Owens1f7627f2012-10-31 09:21:55 -0700355 handlers.append(urllib.request.ProxyHandler({'http': url, 'https': url}))
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700356 if 'REPO_CURL_VERBOSE' in os.environ:
Sarah Owens1f7627f2012-10-31 09:21:55 -0700357 handlers.append(urllib.request.HTTPHandler(debuglevel=1))
358 handlers.append(urllib.request.HTTPSHandler(debuglevel=1))
359 urllib.request.install_opener(urllib.request.build_opener(*handlers))
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700360
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700361def _Main(argv):
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400362 result = 0
363
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700364 opt = optparse.OptionParser(usage="repo wrapperinfo -- ...")
365 opt.add_option("--repo-dir", dest="repodir",
366 help="path to .repo/")
367 opt.add_option("--wrapper-version", dest="wrapper_version",
368 help="version of the wrapper script")
369 opt.add_option("--wrapper-path", dest="wrapper_path",
370 help="location of the wrapper script")
371 _PruneOptions(argv, opt)
372 opt, argv = opt.parse_args(argv)
373
374 _CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path)
375 _CheckRepoDir(opt.repodir)
376
Shawn O. Pearceecff4f12011-11-29 15:01:33 -0800377 Version.wrapper_version = opt.wrapper_version
378 Version.wrapper_path = opt.wrapper_path
379
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700380 repo = _Repo(opt.repodir)
381 try:
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700382 try:
Doug Anderson0048b692010-12-21 13:39:23 -0800383 init_ssh()
Shawn O. Pearce014d0602011-09-11 12:57:15 -0700384 init_http()
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400385 result = repo._Run(argv) or 0
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700386 finally:
387 close_ssh()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700388 except KeyboardInterrupt:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700389 print('aborted by user', file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400390 result = 1
David Pursehouse0b8df7b2012-11-13 09:51:57 +0900391 except ManifestParseError as mpe:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700392 print('fatal: %s' % mpe, file=sys.stderr)
David Pursehouse0b8df7b2012-11-13 09:51:57 +0900393 result = 1
Sarah Owensa5be53f2012-09-09 15:37:57 -0700394 except RepoChangedException as rce:
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800395 # If repo changed, re-exec ourselves.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700396 #
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800397 argv = list(sys.argv)
398 argv.extend(rce.extra_args)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700399 try:
Shawn O. Pearcec9ef7442008-11-03 10:32:09 -0800400 os.execv(__file__, argv)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700401 except OSError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700402 print('fatal: cannot restart repo after upgrade', file=sys.stderr)
403 print('fatal: %s' % e, file=sys.stderr)
Daniel Sandler3ce2a6b2011-04-29 09:59:12 -0400404 result = 128
405
406 sys.exit(result)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700407
408if __name__ == '__main__':
409 _Main(sys.argv[1:])