diff options
author | Shawn O. Pearce <sop@google.com> | 2011-11-29 15:01:33 -0800 |
---|---|---|
committer | Shawn O. Pearce <sop@google.com> | 2011-11-29 15:02:15 -0800 |
commit | ecff4f17b08f791466b73d935c772de57f2257e6 (patch) | |
tree | 44b8e4a958369d33a7e46a8a5d629b2c1486feec /main.py | |
parent | cc14fa9820a4c9fb7a403bbe1264856c6437bf96 (diff) | |
download | git-repo-ecff4f17b08f791466b73d935c772de57f2257e6.tar.gz |
Describe the repo launch version in `repo version`
repo version v1.7.8
(from https://android.googlesource.com/tools/repo.git)
repo launcher version 1.14
(from /home/sop/bin/repo)
git version 1.7.8.rc2.256.gcc761
Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41)
[GCC 4.4.3]
Change-Id: Ifcbe5b0e226a1a6ca85455eb62e4da5e9a0f0ca0
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -36,6 +36,7 @@ from git_config import init_ssh, close_ssh | |||
36 | from command import InteractiveCommand | 36 | from command import InteractiveCommand |
37 | from command import MirrorSafeCommand | 37 | from command import MirrorSafeCommand |
38 | from command import PagedCommand | 38 | from command import PagedCommand |
39 | from subcmds.version import Version | ||
39 | from editor import Editor | 40 | from editor import Editor |
40 | from error import DownloadError | 41 | from error import DownloadError |
41 | from error import ManifestInvalidRevisionError | 42 | from error import ManifestInvalidRevisionError |
@@ -334,6 +335,9 @@ def _Main(argv): | |||
334 | _CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path) | 335 | _CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path) |
335 | _CheckRepoDir(opt.repodir) | 336 | _CheckRepoDir(opt.repodir) |
336 | 337 | ||
338 | Version.wrapper_version = opt.wrapper_version | ||
339 | Version.wrapper_path = opt.wrapper_path | ||
340 | |||
337 | repo = _Repo(opt.repodir) | 341 | repo = _Repo(opt.repodir) |
338 | try: | 342 | try: |
339 | try: | 343 | try: |