mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 06:52:39 +03:00
scanner: support apps using srclib repo type
This commit is contained in:
parent
576da1d048
commit
1a3816acfb
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue