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

scanner: support apps using srclib repo type

This commit is contained in:
Daniel Martí 2015-09-13 22:05:41 -07:00
parent 576da1d048
commit 1a3816acfb

View File

@ -282,7 +282,10 @@ def main():
try:
build_dir = 'build/' + appid
if app['Repo Type'] == 'srclib':
build_dir = os.path.join('build', 'srclib', app['Repo'])
else:
build_dir = os.path.join('build', appid)
# Set up vcs interface and make sure we have the latest code...
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir)