diff options
author | Dan Willemsen <dwillemsen@google.com> | 2015-09-09 21:43:32 +0000 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2015-09-09 21:43:32 +0000 |
commit | 037552333182497e9e38bff984de44df0f93e54b (patch) | |
tree | 4833639da39e34dc4388f06b1eccb541d74589db /subcmds/gitc_init.py | |
parent | 250303b437855c2b50d052a05a08ed517423af8b (diff) | |
download | git-repo-037552333182497e9e38bff984de44df0f93e54b.tar.gz |
Revert "GITC: Always update the gitc manifest from the repo manifest"
This reverts commit 250303b437855c2b50d052a05a08ed517423af8b.
Change-Id: I1fd8af20f802553151aacb953c913f3305ca6057
Diffstat (limited to 'subcmds/gitc_init.py')
-rw-r--r-- | subcmds/gitc_init.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/subcmds/gitc_init.py b/subcmds/gitc_init.py index c957a9dc..e99affa5 100644 --- a/subcmds/gitc_init.py +++ b/subcmds/gitc_init.py | |||
@@ -68,13 +68,15 @@ use for this GITC client. | |||
68 | os.mkdir(self.client_dir) | 68 | os.mkdir(self.client_dir) |
69 | super(GitcInit, self).Execute(opt, args) | 69 | super(GitcInit, self).Execute(opt, args) |
70 | 70 | ||
71 | manifest_file = self.manifest.manifestFile | 71 | for name, remote in self.manifest.remotes.iteritems(): |
72 | remote.fetchUrl = remote.resolvedFetchUrl | ||
73 | |||
72 | if opt.manifest_file: | 74 | if opt.manifest_file: |
73 | if not os.path.exists(opt.manifest_file): | 75 | if not os.path.exists(opt.manifest_file): |
74 | print('fatal: Specified manifest file %s does not exist.' % | 76 | print('fatal: Specified manifest file %s does not exist.' % |
75 | opt.manifest_file) | 77 | opt.manifest_file) |
76 | sys.exit(1) | 78 | sys.exit(1) |
77 | manifest_file = opt.manifest_file | 79 | self.manifest.Override(opt.manifest_file) |
78 | gitc_utils.generate_gitc_manifest(self.repodir, opt.gitc_client, None, manifest_file) | 80 | gitc_utils.generate_gitc_manifest(self.client_dir, self.manifest) |
79 | print('Please run `cd %s` to view your GITC client.' % | 81 | print('Please run `cd %s` to view your GITC client.' % |
80 | os.path.join(gitc_utils.GITC_FS_ROOT_DIR, opt.gitc_client)) | 82 | os.path.join(gitc_utils.GITC_FS_ROOT_DIR, opt.gitc_client)) |