mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
Forgot to actually use the real repotype variable
This commit is contained in:
parent
f07cb7e90f
commit
48e5f61391
@ -159,17 +159,17 @@ def check_repomanifest(app, sdk_path, branch=None):
|
||||
# Set up vcs interface and make sure we have the latest code...
|
||||
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir, sdk_path)
|
||||
|
||||
if vcs.repotype() == 'git':
|
||||
if repotype == 'git':
|
||||
if branch:
|
||||
branch = 'origin/'+branch
|
||||
vcs.gotorevision(branch)
|
||||
elif vcs.repotype() == 'git-svn':
|
||||
elif repotype == 'git-svn':
|
||||
vcs.gotorevision(branch)
|
||||
elif vcs.repotype() == 'svn':
|
||||
elif repotype == 'svn':
|
||||
vcs.gotorevision(None)
|
||||
elif vcs.repotype() == 'hg':
|
||||
elif repotype == 'hg':
|
||||
vcs.gotorevision(branch)
|
||||
elif vcs.repotype() == 'bzr':
|
||||
elif repotype == 'bzr':
|
||||
vcs.gotorevision(None)
|
||||
|
||||
flavour = None
|
||||
|
Loading…
Reference in New Issue
Block a user