diff options
-rw-r--r-- | project.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1880,6 +1880,8 @@ class Project(object): | |||
1880 | result.extend(project.GetDerivedSubprojects()) | 1880 | result.extend(project.GetDerivedSubprojects()) |
1881 | continue | 1881 | continue |
1882 | 1882 | ||
1883 | if url.startswith('..'): | ||
1884 | url = urllib.parse.urljoin("%s/" % self.remote.url, url) | ||
1883 | remote = RemoteSpec(self.remote.name, | 1885 | remote = RemoteSpec(self.remote.name, |
1884 | url=url, | 1886 | url=url, |
1885 | pushUrl=self.remote.pushUrl, | 1887 | pushUrl=self.remote.pushUrl, |