1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-09 00:40:11 +01:00

Multiple corrections to previous commit

This commit is contained in:
Ciaran Gultnieks 2012-01-08 14:13:41 +00:00
parent cabd2c5522
commit 88322f5835

View File

@ -86,10 +86,10 @@ class vcs:
class vcs_git(vcs): class vcs_git(vcs):
def checkrepo(self): def checkrepo(self):
p = subprocess.Popen('git', 'rev-parse', '--show-toplevel', p = subprocess.Popen(['git', 'rev-parse', '--show-toplevel'],
stdout=subprocess.PIPE) stdout=subprocess.PIPE, cwd=self.local)
result = p.communicate()[0].rstrip() result = p.communicate()[0].rstrip()
if not self.local.endswith(result): if not result.endswith(self.local):
raise VCSException('Repository mismatch') raise VCSException('Repository mismatch')
def clone(self): def clone(self):