diff options
author | Simran Basi <sbasi@google.com> | 2015-08-28 14:25:44 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2015-08-31 21:39:17 +0000 |
commit | 8ce5041596ef486510245946b7c6c68ec59add29 (patch) | |
tree | 77ba4fc3346af1f6a54d4018eae12d719671b532 /manifest_xml.py | |
parent | f7a51898d3c989321c29f4ebaf7c3e9d106bc509 (diff) | |
download | git-repo-8ce5041596ef486510245946b7c6c68ec59add29.tar.gz |
GITC: Pull GITC Manifest Dir from the config.
Updates the repo launcher and gitc_utils to pull the manifest
directory location out of the gitc config file.
Change-Id: Id08381b8a7d61962093d5cddcb3ff6afbb13004b
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index b33ec627..a7fe8ddf 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -956,7 +956,7 @@ class GitcManifest(XmlManifest): | |||
956 | super(GitcManifest, self).__init__(repodir) | 956 | super(GitcManifest, self).__init__(repodir) |
957 | self.isGitcClient = True | 957 | self.isGitcClient = True |
958 | self.gitc_client_name = gitc_client_name | 958 | self.gitc_client_name = gitc_client_name |
959 | self.gitc_client_dir = os.path.join(gitc_utils.GITC_MANIFEST_DIR, | 959 | self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(), |
960 | gitc_client_name) | 960 | gitc_client_name) |
961 | self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest') | 961 | self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest') |
962 | 962 | ||